* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.nav-asymmetric {
    background-color: #1a2332;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-section .brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #34495e;
    border-radius: 4px;
    background-color: #273142;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    background-color: #34495e;
    height: 600px;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offset-intro {
    display: flex;
    align-items: center;
    padding: 5rem 3rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block {
    flex: 1.2;
    padding-left: 2rem;
}

.intro-block h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.intro-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.intro-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-irregular {
    padding: 6rem 3rem;
    background-color: #ffffff;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a2332;
    margin-left: 8%;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 2rem);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 3rem;
}

.card-offset-3 {
    margin-top: 1.5rem;
}

.card-offset-4 {
    margin-top: 2.5rem;
}

.card-offset-5 {
    margin-top: 0.5rem;
}

.card-offset-6 {
    margin-top: 2rem;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #bdc3c7;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 1.5rem 1.5rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.trust-section-overlap {
    display: flex;
    align-items: center;
    padding: 5rem 3rem;
    background-color: #ecf0f1;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content {
    flex: 1.3;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.trust-item p {
    color: #5a6c7d;
    font-size: 1rem;
}

.trust-image {
    flex: 1;
    background-color: #bdc3c7;
    height: 450px;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-staggered {
    padding: 6rem 3rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-staggered h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.test-left {
    margin-left: 0;
    margin-right: 15%;
}

.test-right {
    margin-left: 15%;
    margin-right: 0;
}

.test-center {
    margin-left: 7%;
    margin-right: 7%;
}

.testimonial p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.form-section-creative {
    padding: 6rem 3rem;
    background-color: #2c3e50;
}

.form-wrapper-asymmetric {
    max-width: 900px;
    margin: 0 auto 0 10%;
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #bdc3c7;
    font-size: 1.05rem;
}

.contact-form {
    background-color: #34495e;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #7f8c8d;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #2c3e50;
    color: #ecf0f1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.disclaimer-section {
    padding: 3rem;
    background-color: #ecf0f1;
    border-top: 2px solid #bdc3c7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 4rem 3rem 2rem;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.about-hero {
    padding: 6rem 3rem 4rem;
    background-color: #2c3e50;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    align-items: center;
    padding: 5rem 3rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.story-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.team-image-full {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ecf0f1;
}

.team-image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.certifications-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
    max-width: 1000px;
    margin: 0 auto;
}

.certifications-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.certifications-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cert-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.cert-list li {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: -1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.services-hero {
    padding: 6rem 3rem 4rem;
    background-color: #34495e;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.services-hero p {
    font-size: 1.3rem;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: -1.5rem;
    color: #3498db;
    font-weight: 700;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.service-info {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.service-info h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
}

.service-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-hero {
    padding: 6rem 3rem 4rem;
    background-color: #34495e;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #bdc3c7;
}

.contact-info-section {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.contact-block p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-block .no-link {
    color: #34495e;
    font-weight: 500;
}

.contact-block .note {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.contact-map-section {
    padding: 3rem;
    background-color: #ecf0f1;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-color: #bdc3c7;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(44, 62, 80, 0.9);
    padding: 1.5rem;
    border-radius: 6px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}

.contact-cta-section {
    padding: 5rem 3rem;
    text-align: center;
    background-color: #ffffff;
}

.contact-cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 3rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-service {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.thanks-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

.thanks-note p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #1a2332;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 3rem 0 1.5rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin: 2rem 0 1rem;
}

.legal-page p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: #5a6c7d;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-left {
        padding: 3rem 2rem;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-image-right {
        height: 400px;
    }

    .offset-intro,
    .about-story,
    .trust-section-overlap,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 2rem);
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .section-title-offset {
        margin-left: 0;
    }

    .form-wrapper-asymmetric {
        margin: 0 auto;
    }

    .test-left,
    .test-right,
    .test-center {
        margin-left: 0;
        margin-right: 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        flex-direction: column;
    }

    .thanks-container {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}