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

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #f4d03f;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4d03f;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

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

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(72, 155, 184);
    line-height: 1.2;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

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

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: block;
}

.nav-links > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f4d03f;
    border-radius: 25px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-links > li > a:hover::before {
    transform: scale(1);
}

.nav-links > li > a:hover {
    color: #333;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid #e2e8f0;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: fadeInDropdown 0.3s ease forwards;
}

/* Keep dropdown visible when hovering over dropdown content */
.dropdown-content:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Add a small delay before hiding */
.dropdown:not(:hover) .dropdown-content {
    animation: fadeOutDropdown 0.5s ease forwards;
}

@keyframes fadeInDropdown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDropdown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
        display: none;
    }
}

.dropdown-content a {
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #2db5a5;
    font-weight: 600;
}

.dropdown-content a::before {
    display: none;
}

/* Hamburger menu button - Desktop default (hidden) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2db5a5 0%, #1a9d91 100%);
    color: white;
    padding: 120px 0 80px;
    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,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Yellow accent elements in hero */
.hero-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.2;
}

.hero-accent:nth-child(1) {
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-accent:nth-child(2) {
    bottom: 15%;
    left: 8%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-accent:nth-child(3) {
    top: 60%;
    right: 20%;
    width: 80px;
    height: 80px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.1;
    transform: translateX(-50%);
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-example-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-example-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #2db5a5;
    border-radius: 50%;
    opacity: 0.1;
}

.service-example-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-example-card h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    position: relative;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: #f4d03f transparent transparent transparent;
    opacity: 0.1;
}

.faq-items {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #2db5a5 0%, #1a9d91 100%);
    color: white;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

/* Contact Section for IT Consulting */
.contact .contact-messages {
    margin-bottom: 2rem;
}

.contact .contact-messages p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.contact .contact-messages p:last-child {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Mobile Responsiveness for IT Consulting Page */
@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card,
    .service-example-card {
        padding: 1.5rem;
    }
    
    .problems-cta {
        padding: 1.5rem;
    }
    
    .faq-question,
    .faq-answer {
        padding: 1.25rem 1.5rem;
    }
    
    .service-examples li::before {
        left: -10px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .service-examples li {
        padding-left: 1.25rem;
    }
    
    .service-examples li:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .problem-card h3 {
        font-size: 1.1rem;
    }
    
    .service-example-card h4 {
        font-size: 1rem;
    }
    
    .overview-main {
        font-size: 1.2rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Yellow highlight in hero title */
.hero h1 .highlight {
    background: #f4d03f;
    color: white;
    padding: 0 0.5rem;
    border-radius: 8px;
    display: inline-block;
    transform: rotate(-1deg);
    box-shadow: 0 3px 10px rgba(244, 208, 63, 0.3);
    animation: highlightFade 3s ease-out forwards;
}

@keyframes highlightFade {
    0% {
        background: #f4d03f;
        box-shadow: 0 3px 10px rgba(244, 208, 63, 0.3);
    }
    70% {
        background: #f4d03f;
        box-shadow: 0 3px 10px rgba(244, 208, 63, 0.3);
    }
    100% {
        background: transparent;
        box-shadow: none;
    }
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #f4d03f;
    color: #333;
    border: 2px solid #f4d03f;
}

.btn-primary:hover {
    background: #f7dc6f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2db5a5;
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
    position: relative;
}

/* Yellow decorative elements */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #f4d03f;
    border-radius: 0 0 0 100px;
    opacity: 0.1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
    position: relative;
}

/* Yellow underline for section titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f4d03f;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Yellow corner accent for service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent #f4d03f transparent transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 181, 165, 0.15);
    background: white;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2db5a5, #1a9d91);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 181, 165, 0.3);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #1e293b;
    font-weight: 700;
    flex: 1;
}

.service-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2db5a5;
    margin-bottom: 1rem;
    background: #f4d03f;
    color: #333;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    display: inline-block;
    margin-left: 0;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-btn-container {
    text-align: right;
}

.service-btn {
    background: #2db5a5;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-btn:hover {
    background: #1a9d91;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 181, 165, 0.4);
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    position: relative;
}

/* Yellow geometric shapes */
.company-info::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100px 100px;
    border-color: transparent transparent #f4d03f transparent;
    opacity: 0.1;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.company-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2db5a5;
    position: relative;
    overflow: hidden;
}

.company-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2db5a5;
    font-weight: 700;
}

.company-details {
    list-style: none;
}

.company-details li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
}

.company-details li:last-child {
    border-bottom: none;
}

.company-details strong {
    min-width: 120px;
    color: #475569;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2db5a5 0%, #1a9d91 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Yellow contact accent elements */
.contact::before {
    content: '💡';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
    animation: bounce 3s infinite;
}

.contact::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: bounce 4s infinite reverse;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Yellow CTA button in contact */
.contact .btn-primary {
    background: #f4d03f;
    color: #333;
    border: 2px solid #f4d03f;
}

.contact .btn-primary:hover {
    background: #f7dc6f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.4);
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
    position: relative;
}

/* Yellow footer accent */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #f4d03f;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #f4d03f;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    color: #94a3b8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.mobile-active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links > li {
        text-align: center;
    }

    .nav-links > li > a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    /* Mobile dropdown styles */
    .dropdown-content {
        position: static;
        display: block;
        background: transparent;
        box-shadow: none;
        border: none;
        margin: 1rem 0;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 0;
    }

    .dropdown-content a {
        padding: 0.5rem 1rem;
        margin: 0.25rem 0;
        background: rgba(45, 181, 165, 0.1);
        border-radius: 25px;
        font-size: 1rem;
    }

    .dropdown-content a:hover {
        background: rgba(45, 181, 165, 0.2);
    }

    /* Hamburger menu button */
    .hamburger {
        display: block !important;
    }

    .logo-img {
        height: 42px;
        margin-right: 10px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .company-card {
        padding: 2rem;
    }

    nav {
        padding: 0 1rem;
    }
}


@media (max-width: 480px) {
    .logo-img {
        height: 38px;
        margin-right: 8px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Custom Development Page Styles */

/* Key Features Section */
.key-features {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f4d03f;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f4d03f 0%, #2db5a5 100%);
    border-radius: 50%;
    opacity: 0.03;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scale(1.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Option 1: SVG Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, #2db5a5 0%, #1a9d91 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(45, 181, 165, 0.3);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 35px rgba(45, 181, 165, 0.4);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
}

/* Service Overview Section */
.service-overview {
    padding: 80px 0;
    background: white;
    position: relative;
}

.service-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h3 {
    font-size: 1.8rem;
    color: #2db5a5;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-content h4 {
    font-size: 1.4rem;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.overview-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.development-types,
.target-companies {
    list-style: none;
    margin: 1.5rem 0;
}

.development-types li,
.target-companies li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.development-types li::before,
.target-companies li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2db5a5;
    font-weight: bold;
}

.development-types li:last-child,
.target-companies li:last-child {
    border-bottom: none;
}

/* Our Strengths Section */
.our-strengths {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    position: relative;
}

.our-strengths::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100px 100px;
    border-color: transparent transparent #f4d03f transparent;
    opacity: 0.1;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.strength-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.05;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.strength-card:hover::before {
    transform: scale(1);
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 181, 165, 0.15);
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2db5a5, #1a9d91);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 181, 165, 0.3);
    float: left;
    margin-right: 1.5rem;
}

.strength-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin: 0.5rem 0 1rem 0;
    font-weight: 700;
    overflow: hidden;
}

.strength-card h4 {
    font-size: 1.1rem;
    color: #2db5a5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.strength-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    clear: both;
    margin-top: 1rem;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: white;
    position: relative;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: #f4d03f;
    border-radius: 0 100px 0 0;
    opacity: 0.1;
}

.case-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 3rem;
    font-weight: 600;
}

.cases-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.case-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.case-problem {
    text-align: center;
}

.case-problem h4 {
    font-size: 1.2rem;
    color: #dc2626;
    font-weight: 600;
    margin: 0;
}

.case-arrow {
    font-size: 1.5rem;
    color: #2db5a5;
    font-weight: bold;
}

.case-solution {
    text-align: center;
}

.case-solution p {
    color: #16a34a;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.case-cta {
    text-align: center;
    margin-top: 3rem;
}

.case-cta blockquote {
    font-size: 1.3rem;
    color: #2db5a5;
    font-weight: 600;
    background: #f0fdfa;
    padding: 1.5rem 2rem;
    border-left: 4px solid #2db5a5;
    border-radius: 8px;
    margin: 0;
    display: inline-block;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    position: relative;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 80px;
    height: 80px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-content h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.pricing-content h4 {
    font-size: 1.4rem;
    color: #2db5a5;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 600;
    text-align: center;
}

.pricing-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.pricing-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2db5a5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-plan {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f4d03f;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2db5a5;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #64748b;
    font-size: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note blockquote {
    font-size: 1.2rem;
    color: #2db5a5;
    font-weight: 600;
    background: #f0fdfa;
    padding: 1rem 2rem;
    border-left: 4px solid #2db5a5;
    border-radius: 8px;
    margin: 0;
    display: inline-block;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(30%, 30%);
}

.process-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: #e2e8f0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2db5a5, #1a9d91);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 181, 165, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    text-align: center;
    position: relative;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(-50%, -50%);
}

.bottom-cta h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.bottom-cta p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Mobile Responsiveness for Custom Development Page */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .case-arrow {
        transform: rotate(90deg);
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        top: 80px;
        height: 30px;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .feature-card,
    .strength-card {
        padding: 1.5rem;
    }
    
    .case-card {
        padding: 1.5rem;
    }
    
    .pricing-plan {
        padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* IT Consulting Page Styles */

/* Problems Section */
.problems {
    padding: 80px 0;
    background: white;
    position: relative;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: #f4d03f;
    border-radius: 0 100px 0 0;
    opacity: 0.1;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #dc2626 0%, #ef4444 100%);
    border-radius: 50%;
    opacity: 0.03;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scale(1.2);
}

.problem-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.problem-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.problem-icon svg {
    width: 35px;
    height: 35px;
}

.problem-card h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.problems-cta {
    text-align: left;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
    border-radius: 15px;
    border-left: 4px solid #2db5a5;
}

.problems-cta p {
    font-size: 1.1rem;
    color: #475569;
    margin: 0;
    line-height: 1.7;
}

.problems-cta strong {
    color: #2db5a5;
}

/* Service Overview for IT Consulting */
.service-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    position: relative;
}

.service-overview::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(30%, 30%);
}

.overview-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.overview-main {
    font-size: 1.4rem;
    color: #2db5a5;
    margin-bottom: 2rem;
}

.overview-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 2rem 0 1.5rem 0;
    font-weight: 700;
}

.service-examples {
    list-style: none;
    margin: 1.5rem 0;
    display: grid;
    gap: 1rem;
}

.service-examples li {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #2db5a5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.service-examples li::before {
    content: '✓';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #2db5a5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.service-examples li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(45, 181, 165, 0.15);
}

/* Service Examples Section */
.service-examples-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.service-examples-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 80px;
    height: 80px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.1;
    transform: translateX(-50%);
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-example-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-example-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #2db5a5;
    border-radius: 50%;
    opacity: 0.1;
}

.service-example-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-example-card h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    position: relative;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: #f4d03f transparent transparent transparent;
    opacity: 0.1;
}

.faq-items {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #2db5a5 0%, #1a9d91 100%);
    color: white;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

/* Contact Section for IT Consulting */
.contact .contact-messages {
    margin-bottom: 2rem;
}

.contact .contact-messages p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.contact .contact-messages p:last-child {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #489bb8 0%, #2db5a5 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-hero .hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: #fafafa;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 3px solid #f4d03f;
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-icon {
    background: #489bb8;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: #489bb8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2db5a5;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 3px solid #f4d03f;
    padding-bottom: 0.5rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

.optional {
    color: #666;
    font-weight: normal;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #489bb8;
    box-shadow: 0 0 0 3px rgba(72, 155, 184, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-mark {
    background: #489bb8;
    border-color: #489bb8;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-mark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: #489bb8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #2db5a5;
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    margin-top: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, #489bb8 0%, #2db5a5 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(72, 155, 184, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Privacy Policy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f3f5;
    color: #333;
}

.modal-body {
    padding: 2rem;
    line-height: 1.6;
}

.modal-body h4 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body h5 {
    color: #489bb8;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 5rem 0 2rem;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }
    
    .modal-content {
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* Active navigation state for contact page */
.nav-links a.active {
    background: linear-gradient(135deg, #489bb8 0%, #2db5a5 100%);
    color: white;
}

.nav-links a.active:hover {
    background: linear-gradient(135deg, #2db5a5 0%, #489bb8 100%);
}