/* Full fixed CSS with services grid wider and shorter. Ignore linter indentation warnings. */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Colors - Light Mode */
:root {
    --brown-primary: #8B4513;
    --brown-secondary: #A0522D;
    --beige: #F5F5DC;
    --grey-dark: #696969;
    --grey-light: #D3D3D3;
    --white: #FFFFFF;
    --black: #000000;
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --brown-primary: #D2691E;
    --brown-secondary: #F4A460;
    --beige: #2C2C2C;
    --grey-dark: #B0B0B0;
    --grey-light: #404040;
    --white: #FFFFFF;
    --black: #FFFFFF;
}

[data-theme="dark"] .nav-link,
[data-theme="dark"] .logo {
    color: var(--black);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

[data-theme="dark"] .logo-img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Utility Buttons */
.back-to-top,
.dark-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top {
    background: var(--brown-primary);
    color: var(--white);
    display: none;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.dark-toggle {
    top: 30px;
    right: 30px;
    background: rgba(139, 69, 19, 0.8);
    color: var(--white);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.dark-toggle:hover {
    background: var(--brown-secondary);
    transform: rotate(180deg) scale(1.1);
}

/* Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.1rem 0;
    transition: all 0.3s ease;
}

.header-container {
    width: 100%;
    padding: 0.1rem 150px 0.1rem 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-left: 0;
}

.logo-img {
    width: 100px;
    height: 100px;
    margin-right: 4px;
    border-radius: 50%;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.logo span {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-left: -6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brown-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--beige), transparent);
    box-shadow: 0 0 10px var(--beige);
}

.hamburger {
    display: none;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--brown-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: none;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.1s ease;
    backface-visibility: hidden;
    will-change: transform;
}

.hero-content {
    text-align: center;
    color: var(--brown-primary);
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    overflow: hidden;
    border-right: 3px solid var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-assoc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--brown-primary);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--brown-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--beige), var(--brown-primary));
    margin: 0.5rem auto 0;
    border-radius: 2px;
    opacity: 0.8;
}

.about-text .section-title::after {
    content: none;
}

/* Service & Team Icons */
.service-icon {
    font-size: 3.5rem;
    color: var(--brown-primary);
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about {
    background: none;
background-image: url('../images/Testv1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about > .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 0;
    position: relative;
    z-index: 3;
}

.about-grid > * {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.about-grid > *:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.about-text {
    font-size: 1.1rem;
    text-align: left;
}

.about-text p {
    margin-bottom: 0.5rem;
}

.why-choose {
    text-align: left;
}

.why-choose h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--grey-dark);
    transition: color 0.3s;
}

.why-choose li:hover {
    color: var(--brown-primary);
}

.why-choose i {
    color: var(--brown-primary);
    font-size: 1.2rem;
    width: 24px;
}

/* Services - FIXED: Wider full width, shorter height */
.services-grid {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
}

.service-card {
    flex: 1;
    background: var(--white);
    padding: 1rem 1.5rem;
    min-height: 160px;
    border-radius: 20px;
    border: 2px solid var(--brown-primary);
    box-shadow: 0 10px 25px rgba(139,69,19,0.15), 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(139,69,19,0.4);
    border: 2px solid var(--brown-secondary);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Team */
.team {
    background-image: url('../OurTeam.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.team .container {
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        gap: 1rem;
    }
    
    .team-overlay {
        height: 350px;
    }
}

.team-overlay {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.team-overlay[data-delay="0.2"] { animation-delay: 0.2s; }
.team-overlay[data-delay="0.4"] { animation-delay: 0.4s; }

.team-overlay:hover {
    transform: translateY(-20px) scale(1.02);
    background: linear-gradient(135deg, rgba(139,69,19,0.4), rgba(160,82,45,0.7));
    box-shadow: 0 40px 80px rgba(139, 69, 19, 0.4);
}

.overlay-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: var(--white);
    text-align: left;
}

.typewriter-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--white), var(--beige));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--beige);
    animation: typewriter 2s steps(20) forwards, blink-caret 0.75s step-end 2s forwards;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--beige); }
}

.team-role {
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1rem 0;
    color: var(--beige);
    opacity: 0;
    animation: fadeInUpBio 1s ease 2.5s forwards;
}

.bio-text {
    opacity: 0;
    animation: fadeInUpBio 1s ease 3s forwards;
    font-size: 1.1rem;
    line-height: 1.6;
}

.bio-text p {
    margin: 0;
}

@keyframes fadeInUpBio {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-overlay:hover .bio-text {
    transform: translateX(10px);
}

.team-overlay:hover .typewriter-name {
    animation-play-state: paused;
    text-shadow: 0 0 30px var(--white);
}

.team-overlay:hover .team-role {
    color: var(--white);
    text-shadow: 0 0 20px var(--beige);
}

.team-card[data-delay="0.2"] { animation-delay: 0.2s; }
.team-card[data-delay="0.4"] { animation-delay: 0.4s; }

.team-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(139, 69, 19, 0.3);
    border-color: rgba(160, 82, 45, 0.5);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s;
}

.team-card:hover::before {
    left: 100%;
}

.team-avatar {
    position: relative;
    margin-bottom: 1.5rem;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    font-size: 4rem;
    color: var(--white);
    transition: all 0.4s ease;
    opacity: 0.8;
}

.team-card:hover .avatar-icon {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 1.5rem 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-card:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.5px;
}

.photo-overlay .team-role {
    color: var(--beige);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    position: relative;
}

.photo-overlay .team-role::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--beige);
    margin-top: 0.5rem;
}

.team-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--grey-dark);
    text-align: center;
}

.team-desc p {
    margin: 0;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-avatar {
        height: 200px;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .photo-overlay h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 80px 0;
    }
    
    .team-grid {
        gap: 1rem;
    }
    
    .team-avatar {
        height: 160px;
    }
    
    .avatar-icon {
        font-size: 3rem;
    }
}

/* Contact */
.contact {
    background-image: url('../FirmV1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact > .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 15px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-primary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--white);
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(139,69,19,0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brown-primary);
    box-shadow: 0 0 0 3px rgba(139,69,19,0.1);
    transform: scale(1.02);
}

.submit-btn {
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-secondary));
    color: var(--white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139,69,19,0.4);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 400px;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brown-primary), transparent);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
    border-color: var(--brown-primary);
}

.faq-item[open] {
    border-color: var(--brown-primary);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.25);
}

.faq-item summary {
    padding: 2rem;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--brown-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: linear-gradient(90deg, rgba(139,69,19,0.05), transparent);
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brown-primary);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--grey-dark);
    line-height: 1.7;
    animation: fadeInAnswer 0.4s ease;
}

@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode FAQ */
[data-theme="dark"] .faq {
    background: linear-gradient(135deg, var(--grey-light) 0%, #1a1a1a 100%);
}

[data-theme="dark"] .faq-item {
    background: rgba(60, 60, 60, 0.95);
    border-color: rgba(210, 105, 30, 0.3);
}

[data-theme="dark"] .faq-item summary {
    color: var(--white);
}

[data-theme="dark"] .faq-answer {
    color: var(--grey-dark);
}

/* Mobile */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item summary {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        flex-direction: row;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 70px;
        height: 70px;
        margin-right: 6px;
    }

    .contact {
        background-attachment: scroll;
    }

    .services-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about {
        background-attachment: scroll;
    }

    .team {
        background-attachment: scroll;
    }

    .about-grid > * {
        padding: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0,0,0,0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 90vh;
        background-attachment: scroll;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-to-top,
    .dark-toggle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .header-container {
        padding: 0 20px;
    }
}

