* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-blue: #0A1E4A;
    --electric-blue: #3F70D8;
    --golden-yellow: #F3C653;
    --cream-white: #F8F5EE;
    --charcoal-black: #111111;
    
    --gradient-blue: linear-gradient(135deg, #0A1E4A 0%, #3F70D8 100%);
    --gradient-gold: linear-gradient(135deg, #F3C653 0%, #F8F5EE 100%);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    --max-width: 1320px;
    --section-padding: 120px 20px;
    --grid-gap: 30px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal-black);
    background-color: var(--cream-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h4 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

.section {
    padding: var(--section-padding);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 245, 238, 0.95);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, padding 0.3s ease;
    padding: 20px 0;
    border-bottom: 1px solid rgba(10, 30, 74, 0.1);
    overflow: visible;
}

header.hidden {
    transform: translateY(-100%);
}

header:hover {
    padding: 25px 0;
}

.header-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--royal-blue);
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--royal-blue);
    cursor: pointer;
    padding: 5px 10px;
}

.menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--royal-blue);
    cursor: pointer;
    padding: 5px 10px;
    position: absolute;
    top: 20px;
    right: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal-black);
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--golden-yellow);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 120px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    opacity: 0.75;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.hero[style*="background"] .hero-content {
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--royal-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 198, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--royal-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.portfolio-masonry {
    columns: 3;
    column-gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-caption {
    transform: translateY(0);
}

.portfolio-filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--electric-blue);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--electric-blue);
    color: white;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(63, 112, 216, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
}


.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.timeline {
    margin: 60px 0;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-gold);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--golden-yellow);
    border: 3px solid var(--cream-white);
    box-shadow: 0 0 0 3px var(--golden-yellow);
}

.timeline-year {
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--royal-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.contact-info {
    background: var(--gradient-blue);
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    color: var(--golden-yellow);
}


.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--royal-blue);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookies-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookies-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookies-popup p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookies-popup .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-page h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.error-page p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-content h1 {
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.legal-page {
    max-width: 900px;
    margin: 100px auto;
    padding: 40px 20px;
}

.legal-page h1 {
    color: var(--charcoal-black);
    margin-bottom: 30px;
}

.legal-page h2 {
    color: var(--charcoal-black);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-page p {
    color: var(--charcoal-black);
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--charcoal-black);
}

@media (max-width: 1024px) {
    .portfolio-masonry {
        columns: 2;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 20px;
        --grid-gap: 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        position: relative;
        justify-content: space-between;
        align-items: center;
        overflow: visible;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
    }
    
    .header-content.menu-open .menu-toggle {
        display: none;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        background: rgba(248, 245, 238, 0.98);
        backdrop-filter: blur(10px);
        z-index: 10001;
        padding: 60px 20px 20px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    nav.active {
        display: block;
    }
    
    .menu-close {
        display: none;
    }
    
    nav.active .menu-close {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 25px;
        font-size: 1.1rem;
        align-items: flex-start;
        margin-top: 40px;
    }
    
    nav a {
        font-size: 1.1rem;
        padding: 10px 0;
        width: 100%;
        display: block;
    }
    
    .hero {
        min-height: 500px;
        height: 70vh;
        margin-top: 100px;
    }
    
    footer {
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .portfolio-masonry {
        columns: 1;
        column-gap: 20px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grid-12 > div[style*="grid-column: span"] {
        grid-column: span 12 !important;
    }
    
    .grid-12 > div[style*="padding-left"] {
        padding-left: 0 !important;
        padding-top: 30px;
    }
    
    .grid-12 > div[style*="padding-right"] {
        padding-right: 0 !important;
        padding-bottom: 30px;
    }
    
    .service-card,
    .contact-form,
    .contact-info {
        padding: 30px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -38px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookies-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .service-card,
    .contact-form,
    .contact-info {
        padding: 25px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    :root {
        --section-padding: 60px 15px;
        --grid-gap: 15px;
    }
    
    header {
        padding: 12px 0;
        position: fixed;
        top: 0;
        width: 100%;
        overflow: visible;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
        overflow: visible;
    }
    
    .logo {
        font-size: 1rem;
        flex: 1;
    }
    
    .menu-toggle {
        font-size: 1.3rem;
        padding: 3px 8px;
    }
    
    nav ul {
        gap: 20px;
        font-size: 0.95rem;
        margin-top: 40px;
    }
    
    nav a {
        padding: 8px 0;
        font-size: 0.95rem;
    }
    
    .hero {
        min-height: 350px;
        height: 50vh;
        margin-top: 90px;
    }
    
    footer {
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 0.8rem;
        max-width: 100%;
        width: 100%;
    }
    
    .service-card,
    .contact-form,
    .contact-info,
    .testimonial-card {
        padding: 18px;
    }
    
    .service-card i,
    .service-card h3 {
        margin-bottom: 12px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        font-size: 0.85rem;
        padding-top: 12px;
    }
    
    .section {
        padding: 50px 15px;
    }
    
    .section-title {
        margin-bottom: 25px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
        padding-bottom: 12px;
    }
    
    .section-title p {
        font-size: 0.8rem;
    }
    
    .section-title h2::after {
        width: 40px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    h4 {
        font-size: 0.95rem;
    }
    
    p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .services-grid,
    .testimonials-grid {
        gap: 18px;
        grid-template-columns: 1fr;
    }
    
    .grid-12 > div[style*="grid-column: span"] {
        grid-column: span 12 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    
    .grid-12 > div[style*="padding-left: 50px"],
    .grid-12 > div[style*="padding-left: 40px"] {
        padding-left: 0 !important;
        padding-top: 20px;
    }
    
    .grid-12 > div[style*="padding-right: 50px"],
    .grid-12 > div[style*="padding-right: 40px"] {
        padding-right: 0 !important;
        padding-bottom: 20px;
    }
    
    .portfolio-masonry {
        column-gap: 12px;
    }
    
    .portfolio-item {
        margin-bottom: 12px;
    }
    
    .portfolio-caption {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        margin-bottom: 25px;
    }
    
    .timeline-item::before {
        left: -28px;
        width: 10px;
        height: 10px;
    }
    
    .timeline-year {
        font-size: 0.9rem;
    }
    
    .contact-wrapper {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .contact-detail {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .contact-detail strong {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .contact-detail p {
        font-size: 0.85rem;
    }
    
    .cookies-popup {
        left: 5px;
        right: 5px;
        bottom: 5px;
        padding: 12px;
        max-width: calc(100% - 10px);
    }
    
    .cookies-popup p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .cookies-popup .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        width: 100%;
    }
    
    footer {
        padding: 30px 15px;
        margin-top: 0;
    }
    
    .menu-toggle {
        font-size: 1.3rem;
        padding: 3px 8px;
        z-index: 10001;
        position: relative;
    }
    
    .header-content.menu-open .menu-toggle {
        display: none;
    }
    
    .menu-close {
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
        z-index: 10001;
        display: none;
    }
    
    nav.active .menu-close {
        display: block;
    }
    
    nav {
        padding: 50px 15px 20px;
        height: 100vh;
        min-height: 100vh;
    }
    
    nav ul {
        gap: 18px;
        font-size: 0.95rem;
        margin-top: 30px;
    }
    
    nav a {
        font-size: 0.95rem;
        padding: 8px 0;
    }
    
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .footer-content {
        padding: 0;
    }
    
    .footer-content p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .footer-content a {
        font-size: 0.75rem;
        margin: 0 4px;
        display: inline-block;
        margin-bottom: 5px;
    }
    
    .legal-page {
        padding: 70px 15px 30px;
        margin-top: 70px;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .legal-page h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    
    .legal-page h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .legal-page p,
    .legal-page li {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .legal-page ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    
    .error-page {
        padding: 30px 15px;
        margin-top: 90px;
        min-height: 70vh;
    }
    
    .error-page h1 {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .error-page p {
        font-size: 0.85rem;
    }
    
    .thank-you-page {
        padding: 30px 15px;
        margin-top: 90px;
        min-height: 70vh;
    }
    
    .thank-you-content {
        max-width: 100%;
    }
    
    .thank-you-content h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .thank-you-content p {
        font-size: 0.85rem;
    }
    
    .filter-btn {
        padding: 7px 15px;
        font-size: 0.75rem;
        margin: 3px;
    }
    
    .portfolio-filters {
        gap: 8px;
        flex-wrap: wrap;
    }
}

.text-center {
    text-align: center;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--royal-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--golden-yellow), transparent);
    margin: 60px 0;
}

