/* Updated Global Styles with New Color Scheme */
:root {
    --hire-color: #04334b;
    --inn-color: #0ca591;
    --primary-color: #0ca591; /* Using Inn color as primary */
    --primary-dark: #0b9482;
    --secondary-color: #04334b; /* Using Hire color as secondary */
    --accent-color: #0dbbbb;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4bb543;
    --danger-color: #ff3333;
    --warning-color: #ffc107;
    --font-primary: 'Poppins', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}


.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.subtitle {
    color: var(--gray-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.hire {
    color: var(--hire-color);
}

.inn {
    color: var(--inn-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.download-btn.apple {
    background-color: #000;
    color: white;
}

.download-btn.google {
    background-color: #fff;
    color: var(--gray-color);
    border: 1px solid var(--light-gray);
}

.download-btn span strong {
    font-weight: 600;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.hero-image {
    position: relative;
    flex: 1;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    max-height: 600px;
    filter: drop-shadow(0 20px 30px rgba(12, 165, 145, 0.2));
}

.floating-card {
    position: absolute;
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 0.5s;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    text-align: center;
    background-color: white;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--hire-color);
}

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

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(4, 51, 75, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(12, 165, 145, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--hire-color);
}

.feature-card p {
    color: var(--gray-color);
}

/* How It Works Section */
.how-it-works {
    text-align: center;
    background-color: var(--light-color);
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--hire-color);
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--hire-color);
}

.step p {
    color: var(--gray-color);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    background-color: white;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--hire-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.testimonial {
    display: none;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
}

.testimonial.active {
    display: block;
}

.quote {
    position: relative;
}

.quote i {
    font-size: 2rem;
    color: var(--light-gray);
    position: absolute;
    top: -20px;
    left: -20px;
}

.quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--hire-color);
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author img {
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--hire-color);
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    text-align: center;
    background-color: var(--light-color);
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--hire-color);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--hire-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--hire-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hire-color);
}

.features-list i.fa-check {
    color: var(--primary-color);
}

.features-list i.fa-times {
    color: var(--gray-color);
    opacity: 0.5;
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--hire-color) 0%, var(--primary-color) 100%);
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--hire-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col.about .logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col.links ul li {
    margin-bottom: 15px;
}

.footer-col.links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-col.links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: var(--font-primary);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-app-links {
    display: flex;
    gap: 15px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.app-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-link i {
    font-size: 1.2rem;
}

.app-link span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons, .download-buttons {
        justify-content: center;
    }

    .steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

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

    section {
        padding: 60px 0;
    }

    .features-grid, .pricing-cards {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--hire-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(4, 51, 75, 0.1);
}

.about-card .feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(12, 165, 145, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-card .feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--hire-color);
}

.about-card p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-card h3 {
        font-size: 1.5rem;
    }
    
    .about-card p {
        font-size: 1rem;
    }
}

/* Careers Page Specific Styles */
.careers-content {
    padding: 80px 0;
    background-color: var(--light-color);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.careers-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.careers-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(4, 51, 75, 0.1);
}

.careers-email {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0;
    text-decoration: none;
    transition: var(--transition);
}

.careers-email:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.careers-note {
    color: var(--gray-color);
    font-size: 0.9rem;
    font-style: italic;
}

.careers-benefits {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0;
}

.careers-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hire-color);
}

.careers-benefits i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .careers-card {
        padding: 30px 20px;
    }
    
    .careers-email {
        font-size: 1.1rem;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.modal-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.effective-date {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.privacy-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

.privacy-content {
    padding: 80px 0;
    background-color: var(--background-color);
}

.privacy-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -60px;
    position: relative;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.privacy-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.privacy-section strong {
    color: var(--primary-color);
}

.effective-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 60px 0;
    }

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

    .privacy-content {
        padding: 40px 0;
    }

    .privacy-card {
        padding: 20px;
        margin-top: -40px;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* Terms of Service Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.terms-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

.terms-content {
    padding: 80px 0;
    background-color: var(--background-color);
}

.terms-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -60px;
    position: relative;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.terms-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.effective-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .terms-hero {
        padding: 60px 0;
    }

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

    .terms-content {
        padding: 40px 0;
    }

    .terms-card {
        padding: 20px;
        margin-top: -40px;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }
}

/* Cookie Policy Page Styles */
.cookie-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cookie-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cookie-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cookie-content {
    padding: 80px 0;
    background-color: var(--background-color);
}

.cookie-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -60px;
    position: relative;
}

.cookie-section {
    margin-bottom: 2rem;
}

.cookie-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.cookie-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.cookie-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.cookie-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.cookie-section strong {
    color: var(--primary-color);
}

.effective-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookie-hero {
        padding: 60px 0;
    }

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

    .cookie-content {
        padding: 40px 0;
    }

    .cookie-card {
        padding: 20px;
        margin-top: -40px;
    }

    .cookie-section h2 {
        font-size: 1.3rem;
    }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    color: var(--hire-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(12, 165, 145, 0.1);
}

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

.contact-form button {
    align-self: flex-start;
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }
}