:root {
    --primary-color: rgb(241, 98, 50);
    --primary-hover: rgb(220, 85, 40);
    --dark-text: rgb(38, 39, 44);
    --light-gray: rgb(150, 150, 150);
    --white: rgb(255, 255, 255);
    --light-bg: rgb(248, 249, 250);
    --dark-bg: rgb(33, 37, 41);
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 3px solid var(--primary-color);
}

.logo-text {
    font-size: 24px;
    font-weight: 300;
    color: var(--dark-text);
    letter-spacing: -1px;
}

.navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.nav-text {
    color: var(--light-gray);
    font-size: 14px;
    padding: 8px 0;
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 77px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.hero-subtitle {
    font-size: 77px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 60px;
    color: var(--light-gray);
}

.text-primary {
    color: var(--primary-color) !important;
}

.hero-form-section {
    margin-top: 80px;
}

.form-label {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.hero-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.form-control {
    flex: 1;
    padding: 18px 25px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-note {
    color: var(--light-gray);
    font-size: 14px;
    text-align: center;
}

.form-note .fas {
    margin-right: 8px;
}

.brands-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.brand-logo-box {
    background-color: var(--primary-color);
    color: white;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 36px;
    border: 4px solid var(--primary-color);
}

.brand-logo-text {
    font-size: 48px;
    font-weight: 300;
    color: var(--dark-text);
    letter-spacing: -2px;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.award-item {
    text-align: center;
}

.award-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--light-gray);
    margin-bottom: 8px;
}

.award-text {
    font-size: 12px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recognition-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: white;
}

.section-title {
    font-size: 16px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.client-logo {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-placeholder {
    font-size: 18px;
    font-weight: bold;
    color: white;
    padding: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    color: white;
    text-align: center;
}

.mission-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

.mission-subtitle {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mission-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    margin-bottom: 8px;
    color: var(--light-gray);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

@media (max-width: 768px) {
    .hero-title,
    .hero-subtitle {
        font-size: 48px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-control {
        border-radius: 8px;
        border-right: 2px solid #e9ecef;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        border-radius: 8px;
        width: 100%;
    }
    
    .brand-logo-box {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
    
    .brand-logo-text {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 36px;
    }
    
    .mission-subtitle {
        font-size: 42px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title,
    .hero-subtitle {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 28px;
    }
    
    .mission-subtitle {
        font-size: 32px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
}

.pricing-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 18px;
    color: var(--light-gray);
}

.pricing-header p {
    color: var(--light-gray);
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fas {
    color: var(--primary-color);
    margin-right: 10px;
}

.features-section {
    padding: 100px 0;
    background-color: white;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.feature-item p {
    color: var(--light-gray);
    line-height: 1.6;
}

.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--dark-text);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    background-color: white;
    color: var(--light-gray);
    line-height: 1.7;
}

.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-info-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.contact-info-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.contact-info-card p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.team-section {
    padding: 100px 0;
    background-color: white;
}

.team-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 48px;
}

.team-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.team-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-card p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.team-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

.team-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.team-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.team-contact a:hover {
    text-decoration: underline;
}

.terms-content,
.privacy-content {
    padding: 100px 0;
    background-color: white;
}

.terms-document,
.privacy-document {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-document h2,
.privacy-document h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.terms-document h2:first-child,
.privacy-document h2:first-child {
    margin-top: 0;
}

.terms-document h3,
.privacy-document h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-document p,
.privacy-document p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-document ul,
.privacy-document ul {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 30px;
}

.terms-document li,
.privacy-document li {
    margin-bottom: 8px;
}

.contact-details {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 5px;
    color: var(--dark-text);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
