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

:root {
    --dark-midnight: #0a0e12;
    --warm-white: #fafaf8;
    --deep-teal: #00a8ab;
    --soft-concrete: #d9ddde;
    --slate-gray: #505559;
    --accent-teal: #008a8d;
    --bright-accent: #00d4d8;
    --dark-block: #0f1419;
    --card-bg: #1a1f26;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-white);
    color: var(--dark-midnight);
    line-height: 1.6;
}

/* Rounded Fixed Navigation */
nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 168, 171, 0.1);
}

.logo {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-midnight);
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--deep-teal);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-midnight);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--deep-teal);
    transition: width 0.3s;
}

.nav-links a:not(.cta-button):hover::after,
.nav-links a.active:not(.cta-button)::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--deep-teal);
}

.cta-button {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 168, 171, 0.25);
    display: inline-block;
}

.cta-button:hover,
.cta-button.active {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 168, 171, 0.35);
}

/* Hero Section - Light & Airy */
.hero {
    margin-top: 8rem;
    padding: 6rem 5% 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8feff 0%, var(--warm-white) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg span {
    position: absolute;
    display: block;
    background: radial-gradient(circle, rgba(0, 168, 171, 0.15) 0%, rgba(0, 168, 171, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-bg span:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    animation: float-soft 20s ease-in-out infinite;
}

.hero-bg span:nth-child(2) {
    width: 350px;
    height: 350px;
    top: 20%;
    right: -5%;
    animation: float-soft 18s ease-in-out infinite 3s;
}

.hero-bg span:nth-child(3) {
    width: 300px;
    height: 300px;
    bottom: -10%;
    left: 30%;
    animation: float-soft 22s ease-in-out infinite 1s;
}

.hero-bg span:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 20%;
    animation: float-soft 16s ease-in-out infinite 5s;
}

.hero-bg span:nth-child(5) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 5%;
    animation: float-soft 19s ease-in-out infinite 2s;
}

@keyframes float-soft {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-family: 'Cormorant', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--dark-midnight);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--slate-gray);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-weight: 400;
}

.tagline {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-midnight);
    margin: 2.5rem 0 1.5rem;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.secondary-button {
    background-color: white;
    color: var(--deep-teal);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--deep-teal);
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 168, 171, 0.1);
}

.secondary-button:hover {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent-teal) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 168, 171, 0.25);
}

/* Section Styles - Light Background */
section {
    padding: 6rem 5%;
    background-color: var(--warm-white);
}

.section-header {
    font-family: 'Cormorant', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-midnight);
    letter-spacing: -0.5px;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--slate-gray);
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 400;
    text-align: center;
}

/* Services Grid - Compact 4 Column Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 168, 171, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 168, 171, 0.15);
    border-color: var(--deep-teal);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 168, 171, 0.1) 0%, rgba(0, 168, 171, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent-teal) 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-midnight);
    line-height: 1.3;
}

.service-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card p {
    color: var(--slate-gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: auto;
}

.service-card li {
    padding: 0.35rem 0;
    color: var(--slate-gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.service-card li:before {
    content: "→ ";
    color: var(--deep-teal);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Approach Section - Dark Block */
.approach {
    background: linear-gradient(135deg, var(--dark-block) 0%, #141a21 100%);
    color: white;
    padding: 8rem 5%;
    border-radius: 48px;
    margin: 4rem 5%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 171, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.approach .section-header {
    color: white;
}

.approach .section-intro {
    color: rgba(255, 255, 255, 0.7);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-step {
    position: relative;
    padding: 2rem 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 168, 171, 0.3);
    text-align: center;
    transition: all 0.4s;
    min-width: 140px;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    background: linear-gradient(135deg, rgba(0, 168, 171, 0.2) 0%, rgba(0, 168, 171, 0.1) 100%);
    border-color: var(--deep-teal);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 168, 171, 0.3);
}

.process-step h4 {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--deep-teal);
    flex: 0 0 auto;
}

/* Blog Section - Light Background with Dark Cards */
#blog-preview {
    background-color: var(--warm-white);
    color: var(--dark-midnight);
    padding: 6rem 5%;
}

#blog-preview .section-header {
    color: var(--dark-midnight);
}

#blog-preview .section-intro {
    color: var(--slate-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: linear-gradient(135deg, var(--dark-block) 0%, #141a21 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 168, 171, 0.3);
    border-color: var(--deep-teal);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent-teal) 100%);
    display: block;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more {
    color: var(--bright-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

/* CTA Section - Light Background with Dark Form Block */
.cta-section {
    background-color: var(--warm-white);
    color: var(--dark-midnight);
    text-align: center;
    padding: 6rem 5%;
}

.cta-section .section-header {
    color: var(--dark-midnight);
}

.cta-section p {
    color: var(--slate-gray);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-section .cta-button {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent-teal) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 168, 171, 0.25);
}

.cta-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 168, 171, 0.35);
}

/* Contact Form - Dark Block */
.contact-form-container {
    max-width: 700px;
    margin: 3rem auto 0;
}

.contact-form {
    background: linear-gradient(135deg, var(--dark-block) 0%, #141a21 100%);
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: white;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 4px rgba(0, 168, 171, 0.1);
    background-color: rgba(255, 255, 255, 0.08);
}

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

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(0, 168, 171, 0.2);
    color: var(--bright-accent);
    border: 1px solid var(--deep-teal);
}

.form-message.error {
    display: block;
    background-color: rgba(255, 82, 82, 0.2);
    color: #ff5252;
    border: 1px solid #ff5252;
}

/* Blog Article Page - Light Theme */
.blog-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 5% 5rem;
    background-color: var(--warm-white);
}

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

.blog-article-title {
    font-family: 'Cormorant', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-midnight);
    line-height: 1.2;
}

.blog-article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--slate-gray);
    font-size: 0.95rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent-teal) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.blog-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-midnight);
}

.blog-article-content h2 {
    font-family: 'Cormorant', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    color: var(--dark-midnight);
}

.blog-article-content h3 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--dark-midnight);
}

.blog-article-content p {
    margin-bottom: 1.5rem;
    color: var(--slate-gray);
}

.blog-article-content ul, 
.blog-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-article-content li {
    margin-bottom: 0.75rem;
    color: var(--slate-gray);
}

.blog-article-content blockquote {
    border-left: 4px solid var(--deep-teal);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--slate-gray);
    font-size: 1.2rem;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-teal);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: gap 0.3s;
}

.back-to-blog:hover {
    gap: 1rem;
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    text-align: center;
    border: 1px solid rgba(0, 168, 171, 0.1);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 168, 171, 0.15);
    border-color: var(--deep-teal);
}

.team-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--deep-teal);
    box-shadow: 0 8px 24px rgba(0, 168, 171, 0.2);
    display: block;
}

.team-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-midnight);
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.team-card p {
    color: var(--slate-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: left;
}

.team-card p strong {
    color: var(--dark-midnight);
}

/* About Page Specific Styles */
.join-team-section {
    background: linear-gradient(135deg, var(--dark-block) 0%, #141a21 100%);
    text-align: center;
    padding: 8rem 5%;
    border-radius: 48px;
    margin: 4rem 5%;
}

/* Footer - Light Background */
footer {
    background-color: white;
    color: var(--slate-gray);
    padding: 5rem 5% 3rem;
    border-top: 1px solid rgba(0, 168, 171, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-midnight);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--deep-teal);
}

.footer-left p {
    color: var(--slate-gray);
    margin-bottom: 0.75rem;
}

.footer-services {
    color: var(--slate-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-center h4,
.footer-left h4,
.footer-right h4 {
    color: var(--dark-midnight);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--slate-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--deep-teal);
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 168, 171, 0.1);
    color: var(--deep-teal);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent-teal) 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 168, 171, 0.3);
}

.footer-office {
    margin-bottom: 2rem;
}

.footer-office p {
    margin-bottom: 0.5rem;
}

.footer-office a {
    color: var(--slate-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-office a:hover {
    color: var(--deep-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 168, 171, 0.1);
}

.footer-copyright {
    color: var(--slate-gray);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-midnight);
    cursor: pointer;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    nav {
        width: 95%;
        padding: 1rem 1.5rem;
        top: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-radius: 32px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

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

    .hero {
        margin-top: 6rem;
        padding: 3rem 5% 5rem;
    }

    h1 {
        font-size: 3.5rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .tagline {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .section-header {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.35rem;
    }

    .service-card h4 {
        font-size: 0.875rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card li {
        font-size: 0.85rem;
    }

    .approach,
    .cta-section,
    .join-team-section {
        margin: 2rem 3%;
        padding: 4rem 5%;
        border-radius: 32px;
    }

    .process-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step {
        padding: 1.5rem 2rem;
        min-width: 120px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2.5rem;
    }

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

    /* Blog Article Tablet */
    .blog-article {
        padding: 8rem 5% 4rem;
    }

    .blog-article-title {
        font-size: 2.8rem;
    }

    .blog-article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-article-image {
        max-height: 350px;
    }

    .blog-article-content {
        font-size: 1.05rem;
    }

    .blog-article-content h2 {
        font-size: 2.2rem;
    }

    .blog-article-content h3 {
        font-size: 1.8rem;
    }
}

/* Responsive - Mobile (Phones) */
@media (max-width: 480px) {
    nav {
        width: 92%;
        padding: 0.875rem 1.25rem;
        top: 0.75rem;
        border-radius: 60px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 0.25rem;
    }

    .nav-links {
        padding: 1.5rem;
        border-radius: 24px;
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .cta-button,
    .secondary-button {
        padding: 0.7rem 1.75rem;
        font-size: 0.875rem;
    }

    .hero {
        margin-top: 5rem;
        padding: 2.5rem 5% 4rem;
    }

    .hero-bg span {
        filter: blur(30px);
    }

    .hero-bg span:nth-child(1),
    .hero-bg span:nth-child(2) {
        width: 250px;
        height: 250px;
    }

    .hero-bg span:nth-child(3),
    .hero-bg span:nth-child(4),
    .hero-bg span:nth-child(5) {
        width: 180px;
        height: 180px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .tagline {
        font-size: 1.2rem;
        margin: 1.75rem 0 1rem;
        letter-spacing: 0.3px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        margin-top: 1.75rem;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 2rem;
    }

    section {
        padding: 4rem 5%;
    }

    .section-header {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
        letter-spacing: -0.3px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.65;
    }

    /* Services - Single Column on Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-card h4 {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .service-card p {
        font-size: 0.925rem;
        margin-bottom: 1rem;
        line-height: 1.65;
    }

    .service-card ul {
        margin-top: 1rem;
    }

    .service-card li {
        font-size: 0.875rem;
        padding: 0.4rem 0;
        line-height: 1.5;
    }

    /* Approach Section */
    .approach,
    .join-team-section {
        margin: 2rem 4%;
        padding: 3rem 6%;
        border-radius: 28px;
    }

    .approach .section-header,
    .join-team-section .section-header {
        font-size: 2rem;
    }

    .approach .section-intro,
    .join-team-section .section-intro {
        font-size: 0.975rem;
    }

    .process-flow {
        margin-top: 2.5rem;
        gap: 0.875rem;
    }

    .process-step {
        padding: 1.25rem 1.75rem;
        min-width: 100px;
        border-radius: 20px;
    }

    .process-step h4 {
        font-size: 1.05rem;
    }

    .process-arrow {
        font-size: 1.3rem;
    }

    /* Blog Section */
    #blog-preview {
        padding: 4rem 5%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .blog-card {
        border-radius: 20px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-date {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .blog-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.875rem;
        line-height: 1.35;
    }

    .blog-excerpt {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.65;
    }

    .read-more {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 5%;
        margin: 2rem 4%;
        border-radius: 28px;
    }

    .cta-section .section-header {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.65;
    }

    /* Contact Form */
    .contact-form-container {
        margin-top: 2rem;
    }

    .contact-form {
        padding: 2rem;
        border-radius: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        border-radius: 14px;
    }

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

    .form-message {
        margin-top: 1.25rem;
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .team-card {
        padding: 2rem;
        border-radius: 24px;
    }

    .team-card img {
        width: 120px;
        height: 120px;
        margin-bottom: 1.25rem;
    }

    .team-card h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .team-card h4 {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .team-card p {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
        line-height: 1.65;
    }

    /* Footer */
    footer {
        padding: 4rem 5% 2.5rem;
    }

    .footer-container {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-left h4,
    .footer-center h4,
    .footer-right h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-left p,
    .footer-office p,
    .footer-services {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .footer-menu {
        margin-bottom: 1.5rem;
    }

    .footer-menu li {
        margin-bottom: 0.65rem;
    }

    .footer-menu a {
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 1.75rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    /* Blog Article Mobile */
    .blog-article {
        padding: 6rem 5% 3rem;
    }

    .blog-article-header {
        margin-bottom: 2.5rem;
    }

    .blog-article-title {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }

    .blog-article-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.875rem;
    }

    .blog-article-image {
        max-height: 250px;
        border-radius: 20px;
        margin-bottom: 2.5rem;
    }

    .blog-article-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .blog-article-content h2 {
        font-size: 1.75rem;
        margin: 2.5rem 0 1.25rem;
        line-height: 1.3;
    }

    .blog-article-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
        line-height: 1.35;
    }

    .blog-article-content p {
        margin-bottom: 1.25rem;
    }

    .blog-article-content ul,
    .blog-article-content ol {
        margin-bottom: 1.25rem;
        padding-left: 1.5rem;
    }

    .blog-article-content li {
        margin-bottom: 0.65rem;
        font-size: 0.95rem;
    }

    .blog-article-content blockquote {
        padding-left: 1.5rem;
        margin: 2rem 0;
        font-size: 1.05rem;
        border-left-width: 3px;
    }

    .back-to-blog {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}