* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    background-color: #fff;
    color: #333;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img {
    height: clamp(40px, 8vw, 50px);
    width: auto;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    transition: all 0.3s ease;
}
nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: #ff6600;
}
.cta-button {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    white-space: nowrap;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    color: white;
}
.hero {
    background: linear-gradient(135deg, #333 0%, #555 50%, #ff6600 100%);
    color: white;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,154.7C672,160,768,192,864,186.7C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
        no-repeat bottom;
    background-size: cover;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
}
.hero p {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    opacity: 0.95;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero button,
.hero-button {
    background: white;
    color: #ff6600;
    border: none;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem;
}
.hero button:hover,
.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.hero-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.hero-button-secondary:hover {
    background: white;
    color: #ff6600;
}
section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
    max-width: 1200px;
    margin: auto;
}
section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: #333;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: clamp(1rem, 2vw + 0.25rem, 1.2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}
.service {
    background: white;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff8533);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.service h3 {
    font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
    margin-bottom: 1rem;
    color: #333;
}
.service p {
    color: #666;
    line-height: 1.8;
}
.team {
    margin-top: 3rem;
}
.team h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}
.team-member {
    text-align: center;
    max-width: 300px;
}
.team-member img {
    width: min(200px, 80vw);
    height: min(200px, 80vw);
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}
.team-member h4 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    color: #333;
}
.team-member p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}
.trust-section {
    background: #f8f9fa;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
    margin-top: clamp(2rem, 5vw, 4rem);
}
.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}
.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}
.trust-header h3 {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}
.client-logos:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.client-logo {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #666;
    transition: color 0.3s;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: clamp(2rem, 5vw, 4rem);
    text-align: center;
}
.stat-item h4 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    color: #ff6600;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.stat-item p {
    color: #666;
    font-size: 1rem;
}
.testimonials-section {
    padding: 5rem 2rem;
    background: white;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}
.testimonial {
    background: #f8f9fa;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    position: relative;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff6600;
    opacity: 0.2;
    font-family: Georgia, serif;
}
.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}
.author-info h5 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
}
.author-info p {
    font-size: 0.9rem;
    color: #666;
}
.expertise-section {
    padding: 5rem 2rem;
    background: white;
}
.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}
.expertise-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s;
}
.expertise-item:hover {
    transform: scale(1.05);
}
.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s;
}
.expertise-item:hover .expertise-icon {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
}
.expertise-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.expertise-item p {
    font-size: 0.9rem;
    color: #666;
}
footer {
    background: #1a1a1a;
    color: white;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem)
        clamp(1.5rem, 3vw, 2rem);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #ff6600;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.75rem;
}
.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #ff6600;
}
.footer-section p {
    color: #ccc;
    line-height: 1.8;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    nav.active {
        right: 0;
    }
    nav a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    .cta-button {
        margin-top: 1rem;
    }
    .header-container {
        flex-direction: row;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero button,
    .hero-button {
        width: min(100%, 300px);
    }
}

@media (max-width: 480px) {
    .team-members {
        gap: 2rem;
    }
    .client-logo {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 14px;
    }
}
@keyframes glow {
    0%,
    100% {
        filter: brightness(1.1) contrast(1.2)
            drop-shadow(0 0 20px rgba(255, 102, 0, 0.5));
    }
    50% {
        filter: brightness(1.2) contrast(1.3)
            drop-shadow(0 0 40px rgba(255, 102, 0, 0.8));
    }
}
.crisis-section {
    background: #1a1a1a;
    color: white;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
    position: relative;
    overflow: hidden;
}
.crisis-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 0, 0, 0.03) 10px,
        rgba(255, 0, 0, 0.03) 20px
    );
    pointer-events: none;
}
.crisis-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.crisis-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.crisis-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.crisis-logo img {
    max-width: min(250px, 80vw);
    filter: brightness(1.1) contrast(1.2);
    animation: glow 3s ease-in-out infinite;
}
.crisis-badge {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
    border-radius: 4px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}
.crisis-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1rem;
    color: #f8f9fa;
}
.crisis-subtitle {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.2rem);
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}
.crisis-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.crisis-stat {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 8px;
    text-align: center;
}
.crisis-stat h3 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    color: #ff6600;
    margin-bottom: 0.5rem;
}
.crisis-stat-label {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin-bottom: 0.5rem;
}
.crisis-stat-source {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: #999;
}
.crisis-examples {
    background: rgba(255, 102, 0, 0.1);
    border-left: 4px solid #ff6600;
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(2rem, 4vw, 3rem) 0;
    border-radius: 4px;
}
.crisis-examples h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: #ff6600;
}
.crisis-examples-grid {
    display: grid;
    gap: 1.5rem;
}
.crisis-example-item strong {
    color: #ff8533;
    display: block;
    margin-bottom: 0.5rem;
}
.crisis-example-item p {
    margin-top: 0.5rem;
    color: #ccc;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}
.crisis-philosophy {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}
.crisis-philosophy-quote {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    margin-bottom: 1rem;
    color: #ff6600;
    font-weight: 600;
}
.crisis-philosophy-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #ccc;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}
.ai-cleanup-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
    margin-top: -2rem;
}
.ai-cleanup-container {
    max-width: 1200px;
    margin: 0 auto;
}
.ai-cleanup-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ai-cleanup-logo {
    max-width: min(300px, 80vw);
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}
.ai-cleanup-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1rem;
    color: #333;
}
.ai-cleanup-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw + 0.25rem, 1.2rem);
    color: #666;
    line-height: 1.8;
}
.ai-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ai-comparison-column h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 1.5rem;
}
.ai-risks h3 {
    color: #ff0000;
}
.ai-comparison ul {
    list-style: none;
    padding: 0;
}
.ai-comparison li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}
.ai-comparison li span {
    position: absolute;
    left: 0;
}
.ai-risks li span {
    color: #ff0000;
}
.ai-solution li span {
    color: #4caf50;
}
.ai-process-box {
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: clamp(2rem, 4vw, 3rem);
}
.ai-process-title {
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    color: #333;
}
.ai-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}
.ai-process-step {
    text-align: center;
}
.ai-process-number {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6600;
}
.ai-process-step h4 {
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
}
.ai-process-step p {
    color: #666;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}
.ai-cta {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}
.ai-cta-text {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}
.ai-cta-button {
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
}
.contact-section {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}
.contact-title {
    color: #ff0000;
    text-align: center;
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1rem;
}
.contact-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: #333;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.warning-box {
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid #ff0000;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.warning-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
    color: #ff0000;
    font-weight: 600;
    text-align: center;
}
.warning-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}
.warning-list li {
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}
.contact-cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
    text-align: center;
}
.contact-buttons {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.emergency-button {
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
    background: #ff0000;
}
.contact-info {
    display: flex;
    align-items: center;
    color: #666;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}
.contact-info a {
    color: #ff0000;
    margin-left: 0.5rem;
    text-decoration: none;
    font-weight: 700;
}

/* About section paragraph styles */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

.about-intro.second {
    margin: 2rem auto 0;
}

/* Team section styles */
.team {
    margin-top: 4rem;
}

.team-bio {
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact section styles */
.contact-wrapper {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

/* Footer link styles */
.footer-email {
    color: #ff6600;
    text-decoration: none;
}

.footer-contact-info {
    margin-top: 1rem;
}
