* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pastel-blue: #AEC6CF;
    --ink-navy: #000080;
    --textured-white: #FDFCF8;
    --shadow-soft: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--textured-white);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px);
    color: var(--ink-navy);
    line-height: 1.6;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    hyphens: auto;
    overflow-x: clip;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

header {
    background: linear-gradient(135deg, var(--pastel-blue) 0%, rgba(174, 198, 207, 0.95) 100%);
    padding: clamp(0.75rem, 3vw, 1.5rem) 0;
    box-shadow: 0 2px 8px var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.75rem, 3vw, 1rem);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link img {
    width: 50px;
    height: 50px;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--ink-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
}

nav a {
    color: var(--ink-navy);
    text-decoration: none;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--ink-navy);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--ink-navy);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 80%;
}

.hero {
    padding: clamp(2rem, 8vw, 5rem) 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(174, 198, 207, 0.1) 0%, transparent 100%);
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    color: var(--ink-navy);
    margin-bottom: clamp(1rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--ink-navy);
    margin-bottom: clamp(1.5rem, 5vw, 3rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow-soft);
}

.btn {
    display: inline-block;
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    background-color: var(--ink-navy);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background-color: #000060;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--pastel-blue);
    color: var(--ink-navy);
}

.btn-secondary:hover {
    background-color: #9db5be;
}

section {
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--ink-navy);
    text-align: center;
    margin-bottom: clamp(1.5rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 4px 12px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(174, 198, 207, 0.3);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    color: var(--ink-navy);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.card p {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    color: var(--ink-navy);
    margin-bottom: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-soft);
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.review {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-soft);
    border-left: 4px solid var(--pastel-blue);
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    color: var(--ink-navy);
}

.review-author {
    font-weight: 600;
    color: var(--ink-navy);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-soft);
}

.form-group {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ink-navy);
    font-weight: 500;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

form input,
form textarea {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1rem);
    border: 2px solid var(--pastel-blue);
    border-radius: 4px;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-family: inherit;
    color: var(--ink-navy);
    background: var(--textured-white);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--ink-navy);
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.map-container {
    width: 100%;
    margin: clamp(2rem, 5vw, 3rem) 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: clamp(250px, 50vw, 450px);
    border: 0;
    display: block;
}

footer {
    background: linear-gradient(135deg, var(--ink-navy) 0%, #000060 100%);
    color: white;
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.5rem, 4vw, 2rem);
    margin-top: clamp(3rem, 8vw, 5rem);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.footer-section h3 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--pastel-blue);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1rem, 3vw, 1.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.footer-logo {
    text-align: center;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    display: block;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-soft);
}

.policy-content h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--ink-navy);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
}

.policy-content h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: var(--ink-navy);
    margin-top: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 1rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.8;
}

.policy-content ul {
    padding-left: clamp(1.5rem, 4vw, 2rem);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.thankyou-message {
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) 0;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-message h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--ink-navy);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
}

.thankyou-message p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--ink-navy);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--pastel-blue) 0%, rgba(174, 198, 207, 0.98) 100%);
        box-shadow: -2px 0 10px var(--shadow-soft);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        justify-content: start;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .btn-secondary {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    
    nav a {
        display: block;
        padding: 1rem;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    nav a::after {
        display: none;
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .header-top {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    nav ul {
        flex-wrap: nowrap;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

