:root {
    --primary: #d4a5a5;
    --primary-dark: #b88b8b;
    --primary-light: #e6c9c9;
    --secondary: #8b7b6f;
    --accent: #c9a89e;
    --rose: #e3c4c4;
    --beige: #f5ebe6;
    --beige-dark: #e8ddd6;
    --cream: #faf7f5;
    --text-dark: #3d3331;
    --text-medium: #6b5e57;
    --text-light: #9a8a81;
    --border: #e8ddd6;
    --shadow: rgba(61, 51, 49, 0.08);
    --shadow-lg: rgba(61, 51, 49, 0.12);
    --white: #ffffff;
    --success: #7ba68f;
    --error: #c57171;
    --warning: #d9a679;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.625rem; }

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.header {
    background: var(--white);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.logo svg {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-link-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--beige);
    color: var(--primary-dark);
    border-color: var(--beige);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--beige) 0%, var(--rose) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 100%;
    opacity: 0.15;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: 12px;
}

.features {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--beige);
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.services-preview {
    padding: 5rem 0;
    background: var(--beige);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--primary-light) 100%);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.95;
}

.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.footer {
    background: var(--text-dark);
    color: var(--beige);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--rose);
}

.footer-description {
    color: var(--beige-dark);
    margin: 0;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--beige-dark);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rose);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 221, 214, 0.2);
    text-align: center;
    color: var(--beige-dark);
}

.page-hero {
    background: linear-gradient(135deg, var(--beige) 0%, var(--rose) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin: 0;
}

.about-intro {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--primary-light) 100%);
    border-radius: 12px;
}

.values-section {
    padding: 5rem 0;
    background: var(--beige);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--beige);
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
    margin: 0;
}

.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--primary-light) 100%);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-medium);
}

.credentials-section {
    padding: 5rem 0;
    background: var(--beige);
}

.credentials-content {
    max-width: 800px;
    margin: 0 auto;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-detail {
    padding: 5rem 0;
    background: var(--white);
}

.service-detail.alt {
    background: var(--beige);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content .service-detail-image {
    order: 2;
}

.service-detail.alt .service-detail-content {
    grid-template-columns: 1fr 1.2fr;
}

.service-detail.alt .service-detail-image {
    order: 0;
}

.service-detail-text h2 {
    margin-bottom: 1.5rem;
}

.service-detail-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-text ul {
    margin-bottom: 1.5rem;
}

.service-detail-text li {
    color: var(--text-medium);
}

.price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    padding: 2rem;
    background: var(--beige);
    border-radius: 12px;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    margin: 0;
}

.register-section {
    padding: 5rem 0;
    background: var(--white);
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.register-info h2 {
    margin-bottom: 2rem;
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.expectation-item {
    display: flex;
    gap: 1.5rem;
}

.expectation-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--beige);
    color: var(--primary);
}

.expectation-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.expectation-item p {
    color: var(--text-medium);
    margin: 0;
}

.register-note {
    padding: 1.5rem;
    background: var(--beige);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.register-note h3 {
    margin-bottom: 1rem;
}

.register-note ul {
    margin: 0;
}

.register-note li {
    color: var(--text-medium);
}

.register-form-wrapper {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 12px;
}

.register-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-alt-section {
    padding: 5rem 0;
    background: var(--beige);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
}

.contact-option svg {
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.contact-option h3 {
    margin-bottom: 1rem;
}

.contact-option a {
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-hours {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-wrapper h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-wrapper p,
.legal-wrapper li {
    color: var(--text-medium);
}

.legal-wrapper strong {
    color: var(--text-dark);
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--beige);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

.thanks-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--beige);
    color: var(--primary);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-submessage {
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.thanks-info {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-info h3 {
    margin-bottom: 2rem;
}

.thanks-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.thanks-step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.thanks-step p {
    color: var(--text-medium);
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thanks-contact h3 {
    margin-bottom: 1rem;
}

.thanks-contact p {
    color: var(--text-medium);
}

.thanks-phone {
    margin: 1.5rem 0 1rem;
}

.thanks-phone a {
    font-size: 1.5rem;
    font-weight: 600;
}

.thanks-hours {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 16px var(--shadow-lg);
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--rose);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 20px;
        box-shadow: 0 4px 8px var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-link-cta {
        margin-top: 1rem;
        text-align: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-image {
        display: none;
    }

    .features {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-preview {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .page-hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail,
    .service-detail.alt {
        padding: 3rem 0;
    }

    .service-detail-content,
    .service-detail.alt .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-content .service-detail-image,
    .service-detail.alt .service-detail-image {
        order: 0;
    }

    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .register-form-wrapper {
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }

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

    .thanks-steps {
        grid-template-columns: 1fr;
    }

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

    .thanks-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}