/* ===== CSS Variables ===== */
:root {
    --color-primary: #8b7355;
    --color-primary-dark: #6d5a45;
    --color-primary-light: #a89070;
    --color-secondary: #d4c4a8;
    --color-secondary-light: #e8dcc8;
    --color-accent: #c9a66b;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-background: #faf8f5;
    --color-white: #ffffff;
    --color-border: #e0d8cc;
    --color-success: #4a9d5b;
    --color-warning: #d4a84b;
    --color-error: #c75050;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

.hidden {
    display: none !important;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-small {
    padding: 10px 18px;
    font-size: 13px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--color-border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-icon {
    font-size: 28px;
}

.logo .au {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 196, 168, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero h1 .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-light);
}

.feature-icon {
    font-size: 20px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-placeholder {
    width: 350px;
    height: 450px;
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-secondary-light) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pants-illustration {
    width: 200px;
    height: 300px;
}

.pants-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: var(--color-text);
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Quiz Section ===== */
.quiz-section {
    background-color: var(--color-white);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-progress {
    margin-bottom: 30px;
}

.progress-bar {
    height: 6px;
    background-color: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 13px;
    color: var(--color-text-muted);
}

.quiz-step h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.quiz-options {
    display: grid;
    gap: 15px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: left;
}

.quiz-option:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.quiz-option.selected {
    border-color: var(--color-primary);
    background-color: rgba(139, 115, 85, 0.08);
}

.option-icon {
    font-size: 28px;
}

.option-text {
    font-size: 16px;
    font-weight: 500;
}

.quiz-results {
    display: none;
    text-align: center;
}

.quiz-results.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.quiz-results h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.results-intro {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.recommended-products {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

#retake-quiz {
    margin-top: 20px;
}

/* ===== Products Section ===== */
.products-section {
    background-color: var(--color-background);
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
}

.filter-group select {
    padding: 10px 35px 10px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background-color: var(--color-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: var(--transition);
}

.filter-group select:hover {
    border-color: var(--color-primary);
}

.view-toggle {
    display: flex;
    gap: 5px;
    padding: 5px;
    background-color: var(--color-background);
    border-radius: var(--radius-sm);
}

.view-btn {
    padding: 10px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: var(--transition);
}

.view-btn:hover {
    color: var(--color-primary);
}

.view-btn.active {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-svg {
    width: 100px;
    height: 150px;
    opacity: 0.8;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    background-color: var(--color-accent);
    color: var(--color-white);
}

.product-badge.bestseller {
    background-color: var(--color-success);
}

.product-badge.new {
    background-color: var(--color-primary);
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
    font-family: var(--font-heading);
}

.product-description {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--color-text-light);
}

.stars {
    color: var(--color-accent);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 12px;
    font-size: 13px;
}

.compare-btn {
    width: 44px;
    flex: none !important;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: var(--transition);
}

.compare-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

/* Products Table */
.products-table-wrapper {
    overflow-x: auto;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.products-table th,
.products-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.products-table th {
    background-color: var(--color-background);
    font-weight: 600;
    color: var(--color-text);
    position: sticky;
    top: 0;
}

.products-table tbody tr:hover {
    background-color: rgba(139, 115, 85, 0.03);
}

.products-table .product-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-product-image {
    width: 50px;
    height: 50px;
    background: var(--color-secondary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-product-image svg {
    width: 25px;
    height: 35px;
    opacity: 0.7;
}

.products-count {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ===== Compare Section ===== */
.compare-section {
    background-color: var(--color-white);
}

.compare-container {
    max-width: 1000px;
    margin: 0 auto;
}

.compare-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.compare-slot {
    min-height: 300px;
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.compare-slot:hover {
    border-color: var(--color-primary);
}

.compare-slot.empty .slot-content {
    display: none;
}

.compare-slot:not(.empty) .slot-placeholder {
    display: none;
}

.compare-slot:not(.empty) {
    border-style: solid;
    cursor: default;
}

.slot-placeholder {
    text-align: center;
    color: var(--color-text-muted);
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    margin: 0 auto 10px;
}

.slot-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.slot-product-image {
    height: 120px;
    background: var(--color-secondary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.slot-product-image svg {
    width: 50px;
    height: 70px;
    opacity: 0.7;
}

.slot-product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.slot-product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.remove-from-compare {
    padding: 8px 15px;
    font-size: 12px;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.remove-from-compare:hover {
    border-color: var(--color-error);
    color: var(--color-error);
}

.compare-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.compare-table th {
    background-color: var(--color-background);
    font-weight: 600;
}

.compare-table .feature-name {
    text-align: left;
    font-weight: 500;
    background-color: var(--color-background);
}

.compare-table tbody tr:hover {
    background-color: rgba(139, 115, 85, 0.03);
}

.compare-actions {
    text-align: center;
}

/* ===== SEO Section ===== */
.seo-section {
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-background) 100%);
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-content h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    margin-bottom: 40px;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.seo-block {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.seo-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.seo-block p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.seo-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.seo-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.seo-cta p {
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.affiliate-notice {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-content h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.modal-products {
    display: grid;
    gap: 15px;
}

.modal-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.modal-product-item:hover {
    border-color: var(--color-primary);
    background-color: rgba(139, 115, 85, 0.05);
}

.modal-product-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-product-image {
    width: 60px;
    height: 60px;
    background: var(--color-secondary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-image svg {
    width: 30px;
    height: 40px;
    opacity: 0.7;
}

.modal-product-info {
    flex: 1;
}

.modal-product-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.modal-product-price {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compare-slots {
        grid-template-columns: 1fr;
    }

    .compare-slot {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--color-white);
        box-shadow: var(--shadow-md);
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 25px;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    section {
        padding: 60px 0;
    }

    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .filters {
        flex-direction: column;
    }

    .view-toggle {
        justify-content: center;
    }

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

    .quiz-container {
        padding: 30px 20px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-placeholder {
        width: 280px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 40px;
    }

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

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

    .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
