/* Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-top: 173px;
    margin: 0;
}

/* Header Styles */
.navbar {
    height: 173px;
    padding: 0;
    border-bottom: none;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Logo Styles */
.navbar-brand {
    padding: 0;
    margin: 0;
}

.logo {
    height: 144px;
    width: auto;
}

/* Navigation Styles */
.navbar-nav {
    gap: 40px;
}

.nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 0 !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link.active {
    color: #d4af37;
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

/* Responsive Styles */
@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
    
    .navbar {
        height: 80px;
    }
    
    .logo {
        height: 50px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .navbar-collapse.show::before,
    .navbar-collapse.collapsing::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    .navbar-nav {
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-item {
        padding: 10px 0;
    }
    
    .nav-link.active::after {
        display: none;
    }
}


/* Banner Styles */
.banner {
    position: relative;
    height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.banner-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 60px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars {
    font-size: 24px;
    letter-spacing: 4px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rating-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Banner Responsive */
@media (max-width: 991px) {
    .banner {
        height: 500px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .stars {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 400px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
}


/* About Section Styles */
.about-section {
    position: relative;
    height: 1014px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    color: #fff;
}

.about-name {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.about-image-wrapper {
    flex-shrink: 0;
}

.about-image {
    width: 490px;
    height: auto;
    border-radius: 8px;
}

/* About Section Responsive */
@media (max-width: 991px) {
    .about-section {
        height: auto;
        min-height: 600px;
        padding: 80px 0;
    }
    
    .about-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-name {
        font-size: 36px;
    }
    
    .about-title {
        font-size: 16px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .about-image {
        width: 100%;
        max-width: 490px;
    }
}

@media (max-width: 576px) {
    .about-section {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .about-name {
        font-size: 28px;
    }
    
    .about-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
}


/* Services Section Styles */
.services-section {
    background-color: #e8f0f2;
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Services Section Responsive */
@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-name {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
}


/* Newsletter Section Styles */
.newsletter-section {
    background-color: #fff;
    padding: 100px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-group {
    width: 100%;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #000;
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    border-color: #000;
}

.btn-send {
    padding: 15px 60px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-send:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Contact Section Styles */
.contact-section {
    background-color: #fff;
    padding: 100px 0;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.contact-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.contact-value {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.contact-link {
    font-size: 16px;
    font-weight: 400;
    color: #4a7c9e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2c5f7f;
}

.contact-form-wrapper {
    background-color: transparent;
    padding: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.btn-submit {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #4a7c9e;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-end;
}

.btn-submit:hover {
    background-color: #2c5f7f;
    transform: translateY(-2px);
}

/* Newsletter & Contact Responsive */
@media (max-width: 991px) {
    .newsletter-section {
        padding: 80px 0;
    }
    
    .newsletter-title {
        font-size: 36px;
    }
    
    .newsletter-subtitle {
        font-size: 16px;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 0;
    }
    
    .btn-send {
        width: 100%;
    }
    
    .btn-submit {
        align-self: stretch;
    }
}


/* Team Hero Section Styles */
.team-hero {
    background-color: #fff;
    padding: 100px 0;
}

.team-hero-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.team-hero-text {
    flex: 1;
}

.team-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.team-hero-description {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
}

.team-hero-image-wrapper {
    flex-shrink: 0;
}

.team-hero-image {
    width: auto;
    height: 544px;
    border-radius: 12px;
    object-fit: cover;
}

/* Team Hero Responsive */
@media (max-width: 991px) {
    .team-hero {
        padding: 80px 0;
    }
    
    .team-hero-row {
        flex-direction: column;
        gap: 50px;
    }
    
    .team-hero-title {
        font-size: 40px;
    }
    
    .team-hero-description {
        font-size: 16px;
    }
    
    .team-hero-image {
        width: 100%;
        height: auto;
        max-height: 500px;
    }
}

@media (max-width: 576px) {
    .team-hero {
        padding: 60px 0;
    }
    
    .team-hero-row {
        gap: 30px;
    }
    
    .team-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .team-hero-description {
        font-size: 14px;
    }
    
    .team-hero-image {
        max-height: 400px;
    }
}


/* Team Insight Section Styles */
.team-insight {
    background-color: #fff;
    padding: 100px 0;
}

.team-insight-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.team-insight-text {
    flex: 0 0 300px;
}

.team-insight-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.team-insight-description {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
}

.team-insight-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-insight-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-insight-right {
    display: flex;
}

.team-insight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.team-insight-left .team-insight-img {
    height: calc(50% - 10px);
}

/* Team Insight Responsive */
@media (max-width: 991px) {
    .team-insight {
        padding: 80px 0;
    }
    
    .team-insight-row {
        flex-direction: column;
        gap: 50px;
    }
    
    .team-insight-text {
        flex: 1;
        width: 100%;
    }
    
    .team-insight-title {
        font-size: 40px;
    }
    
    .team-insight-description {
        font-size: 16px;
    }
    
    .team-insight-images {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .team-insight {
        padding: 60px 0;
    }
    
    .team-insight-row {
        gap: 30px;
    }
    
    .team-insight-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .team-insight-description {
        font-size: 14px;
    }
    
    .team-insight-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-insight-left {
        gap: 15px;
    }
    
    .team-insight-left .team-insight-img {
        height: 200px;
    }
    
    .team-insight-right .team-insight-img {
        height: 300px;
    }
}


/* Services Hero Section Styles */
.services-hero {
    background-color: #E6F0F7;
    padding: 100px 0;
}

.services-hero-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.services-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.services-hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.services-hero-image-wrapper {
    flex: 0 0 480px;
}

.services-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.services-hero-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.service-item-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Hero Responsive */
@media (max-width: 991px) {
    .services-hero {
        padding: 80px 0;
    }
    
    .services-hero-header {
        margin-bottom: 60px;
    }
    
    .services-hero-title {
        font-size: 40px;
    }
    
    .services-hero-subtitle {
        font-size: 16px;
    }
    
    .services-hero-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .services-hero-image-wrapper {
        flex: 1;
        width: 100%;
    }
    
    .services-hero-list {
        gap: 40px;
    }
    
    .service-item-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 60px 0;
    }
    
    .services-hero-header {
        margin-bottom: 40px;
    }
    
    .services-hero-title {
        font-size: 32px;
    }
    
    .services-hero-subtitle {
        font-size: 14px;
    }
    
    .services-hero-content {
        gap: 40px;
    }
    
    .services-hero-list {
        gap: 30px;
    }
    
    .service-item-title {
        font-size: 20px;
    }
    
    .service-item-description {
        font-size: 14px;
    }
}


/* Projects Section Styles */
.projects-section {
    background-color: #fff;
    padding: 100px 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.projects-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.projects-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-content {
    padding: 30px;
    position: relative;
}

.project-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.project-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.project-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: #000;
    transition: transform 0.3s ease;
}

.project-card:hover .project-arrow {
    transform: translateX(5px);
}

/* Projects Section Responsive */
@media (max-width: 991px) {
    .projects-section {
        padding: 80px 0;
    }
    
    .projects-header {
        margin-bottom: 60px;
    }
    
    .projects-title {
        font-size: 40px;
    }
    
    .projects-subtitle {
        font-size: 16px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-header {
        margin-bottom: 40px;
    }
    
    .projects-title {
        font-size: 32px;
    }
    
    .projects-subtitle {
        font-size: 14px;
    }
    
    .projects-grid {
        gap: 25px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-content {
        padding: 25px;
    }
    
    .project-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .project-arrow {
        top: 25px;
        right: 25px;
        font-size: 20px;
    }
}


/* Testimonial Section Styles */
.testimonial-section {
    background-color: #fff;
    padding: 0;
}

.testimonial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.testimonial-image-wrapper {
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    background-color: #4a6b82;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    color: #fff;
    text-align: center;
}

.testimonial-stars {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Testimonial Section Responsive */
@media (max-width: 991px) {
    .testimonial-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .testimonial-image-wrapper {
        height: 300px;
    }
    
    .testimonial-content {
        padding: 60px 40px;
    }
    
    .testimonial-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-image-wrapper {
        height: 250px;
    }
    
    .testimonial-content {
        padding: 50px 30px;
    }
    
    .testimonial-stars {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 14px;
    }
}


/* Insights Section Styles */
.insights-section {
    background-color: #fff;
    padding: 100px 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.insight-card {
    background: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 25px;
}

.insight-content {
    padding: 0;
}

.insight-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 15px;
}

.insight-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.insight-read-time {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

/* Insights Section Responsive */
@media (max-width: 991px) {
    .insights-section {
        padding: 80px 0;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .insights-section {
        padding: 60px 0;
    }
    
    .insights-grid {
        gap: 40px;
    }
    
    .insight-image {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .insight-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .insight-description {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .insight-read-time {
        font-size: 13px;
    }
}


/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.faq-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-item {
    text-align: center;
}

.faq-question {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.faq-answer {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section Responsive */
@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
    
    .faq-list {
        gap: 50px;
    }
    
    .faq-question {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .faq-answer {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .faq-list {
        gap: 40px;
    }
    
    .faq-question {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}


/* Insights Contact Section Styles */
.insights-contact-section {
    position: relative;
    background-image: url('images/d4.avif');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.insights-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.insights-contact-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.insights-contact-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.insights-contact-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.insights-contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
}

.insights-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Insights Contact Responsive */
@media (max-width: 991px) {
    .insights-contact-section {
        padding: 80px 0;
        min-height: 600px;
    }
    
    .insights-contact-title {
        font-size: 40px;
    }
    
    .insights-contact-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .insights-contact-form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .insights-contact-section {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .insights-contact-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .insights-contact-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .insights-contact-form-wrapper {
        padding: 30px 20px;
    }
}
