* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: block;
}

.logo img {
    height: 60px;
    display: block;
}

.logo-text {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: #666;
}

.nav-link.active {
    color: #000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
    max-width: 500px;
}

.btn-primary {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background-color: rgba(255,255,255,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: none;
    padding: 18px 0;
}

.btn-secondary:hover {
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-outline {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #000;
    color: white;
}

.about-image {
    position: relative;
    max-width: 100%;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 32px;
    color: #1a2332;
    line-height: 1;
    position: absolute;
    left: 30px;
    top: 30px;
}

.testimonial-text {
    font-size: 16px;
    color: #000;
    margin-bottom: 12px;
    margin-left: 40px;
    font-weight: 600;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    margin-left: 40px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #1a2332;
}

.services-title {
    text-align: center;
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

.newsletter p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #000;
}

.btn-dark {
    background-color: #000;
    color: white;
    padding: 14px 40px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn-dark:hover {
    background-color: #333;
}

/* Footer */
.footer {
    background-color: #1a2332;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-section .form-group {
    margin-bottom: 15px;
}

.footer-section .form-group label {
    color: rgba(255,255,255,0.7);
}

.footer-section .form-group input {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.footer-section .form-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-small {
    background-color: #4a5568;
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: #5a6578;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .nav-menu.active {
        max-height: 400px;
        padding: 30px 25px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        text-align: right;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .testimonial-card {
        position: static;
        margin-top: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-page-hero h1 {
        font-size: 36px;
    }
    
    .our-work h2 {
        font-size: 36px;
    }
    
    .work-item {
        margin-bottom: 60px;
    }
    
    .work-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .work-image-large,
    .work-image-small {
        width: 100%;
        height: 250px;
    }
    
    .work-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .work-content button {
        width: 100%;
    }
    
    /* About Page Responsive */
    .who-we-are {
        padding: 50px 0;
    }
    
    .who-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .who-text {
        width: 100%;
        order: 1;
    }
    
    .who-text h1 {
        font-size: 42px !important;
        margin-bottom: 25px !important;
        line-height: 1.1 !important;
    }
    
    .who-text p {
        font-size: 16px !important;
        margin-bottom: 25px !important;
        color: #999 !important;
    }
    
    .who-image {
        width: 100%;
        order: 2;
    }
    
    .who-image img {
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
    }
    
    .our-mission {
        padding: 50px 0 !important;
        background-color: #f8f8f8 !important;
    }
    
    .mission-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .mission-text {
        order: 1;
    }
    
    .mission-text h2 {
        font-size: 42px !important;
        margin-bottom: 25px !important;
    }
    
    .mission-text p {
        font-size: 16px !important;
        color: #999 !important;
    }
    
    .mission-images {
        padding-right: 0 !important;
        justify-content: flex-start !important;
        height: auto !important;
        position: relative !important;
        display: flex !important;
        gap: 15px !important;
        align-items: flex-start !important;
        order: 2;
    }
    
    .mission-img-large {
        width: 55% !important;
        max-width: none !important;
        height: auto !important;
        aspect-ratio: 4/5 !important;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        border-radius: 20px !important;
    }
    
    .mission-img-small {
        width: 40% !important;
        max-width: none !important;
        height: auto !important;
        aspect-ratio: 3/4 !important;
        right: auto !important;
        left: auto !important;
        position: relative !important;
        top: 40px !important;
        transform: none !important;
        border-radius: 20px !important;
    }
    
    .about-work-section {
        padding: 50px 0 !important;
        background-color: #f8f8f8 !important;
    }
    
    .about-work-section h2 {
        font-size: 42px !important;
        margin-bottom: 15px !important;
    }
    
    .about-work-section .section-subtitle {
        color: #999 !important;
        margin-bottom: 35px !important;
    }
    
    .work-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 35px !important;
    }
    
    .work-gallery img {
        height: 280px !important;
        border-radius: 20px !important;
    }
    
    .work-details {
        padding: 50px 0 !important;
        background-color: #f8f8f8 !important;
    }
    
    .work-details h2 {
        font-size: 42px !important;
        margin-bottom: 15px !important;
    }
    
    .work-details .section-subtitle {
        color: #999 !important;
        margin-bottom: 35px !important;
    }
    
    .work-detail-item {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        margin-bottom: 45px !important;
    }
    
    .work-detail-item img {
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
        order: 1;
    }
    
    .work-detail-text {
        order: 2;
    }
    
    .work-detail-text h3 {
        font-size: 32px !important;
        margin-bottom: 18px !important;
    }
    
    .work-detail-text p {
        font-size: 16px !important;
        color: #999 !important;
    }
    
    .stay-informed-about {
        padding: 50px 0 !important;
    }
    
    .stay-informed-about h2 {
        font-size: 38px !important;
    }
        
    .about-work-section {
        padding: 60px 0;
        background-color: #f8f8f8;
    }
    
    .about-work-section h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .about-work-section .section-subtitle {
        color: #999;
        margin-bottom: 40px;
    }
    
    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
    
    .work-gallery img {
        height: 280px;
        border-radius: 20px;
    }
    
    .work-details {
        padding: 60px 0;
        background-color: #f8f8f8;
    }
    
    .work-details h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .work-details .section-subtitle {
        color: #999;
        margin-bottom: 40px;
    }
    
    .work-detail-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
    }
    
    .work-detail-item img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        order: 1;
    }
    
    .work-detail-text {
        order: 2;
    }
    
    .work-detail-text h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .work-detail-text p {
        font-size: 16px;
        color: #999;
    }
    
    .stay-informed-about {
        padding: 60px 0;
    }
    
    .stay-informed-about h2 {
        font-size: 42px;
    }
    
    /* Contact Page Responsive */
    .contact-hero {
        padding: 50px 0 !important;
    }
    
    .contact-wrapper {
        min-height: auto !important;
    }
    
    .contact-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .contact-info {
        display: block !important;
        order: 1 !important;
        margin-bottom: 30px !important;
    }
    
    .contact-info h1 {
        font-size: 42px !important;
        margin-bottom: 20px !important;
    }
    
    .contact-info p {
        font-size: 16px !important;
        color: #999 !important;
    }
    
    .contact-form-wrapper {
        background: #fff !important;
        padding: 40px 25px !important;
        border-radius: 20px !important;
        box-shadow: none !important;
        margin-bottom: 30px !important;
        order: 2 !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px !important;
    }
    
    .contact-form label {
        font-size: 16px !important;
        color: #333 !important;
        margin-bottom: 10px !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        padding: 16px 20px !important;
        border: 2px solid #e0e0e0 !important;
        border-radius: 12px !important;
        font-size: 15px !important;
        background: #fff !important;
    }
    
    .contact-form textarea {
        min-height: 140px !important;
    }
    
    .contact-form .btn-dark {
        width: 100% !important;
        padding: 18px !important;
        border-radius: 50px !important;
        background-color: #2d3e5f !important;
        font-size: 16px !important;
    }
    
    .contact-form-wrapper {
        background: #fff !important;
        padding: 40px 20px !important;
        border-radius: 20px !important;
        
        margin-bottom: 0px !important;
        order: 1 !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .contact-image-bg {
        position: relative !important;
        bottom: 0 !important;
        margin-top: -60px !important;
        z-index: 1 !important;
        order: 2 !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .contact-image-bg img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
        border-radius: 20px !important;
        object-position: center 30% !important;
    }
    
    .contact-wrapper {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .our-location {
        padding: 50px 0 !important;
    }
    
    .location-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .location-text h2 {
        font-size: 38px !important;
    }
    
    .location-text p {
        font-size: 16px !important;
        color: #999 !important;
    }
    
    .location-details {
        gap: 25px !important;
    }
    
    .location-item h3 {
        font-size: 16px !important;
    }
    
    .location-item p {
        font-size: 15px !important;
        color: #999 !important;
    }
    
    .map-container {
        margin-top: 30px !important;
    }
    
    .map-container iframe {
        border-radius: 20px !important;
        height: 300px !important;
    }
    
    .stay-informed-contact {
        padding: 50px 0 !important;
    }
    
    .stay-informed-contact h2 {
        font-size: 38px !important;
    }
    
    .stay-informed-contact p {
        font-size: 16px !important;
        color: #999 !important;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-text h2,
    .stay-informed-contact h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .about-text h2,
    .services-title,
    .newsletter h2 {
        font-size: 28px;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* About Page Small Mobile */
    .who-we-are {
        padding: 50px 0;
    }
    
    .who-text h1 {
        font-size: 36px;
    }
    
    .who-text p {
        font-size: 15px;
    }
    
    .our-mission {
        padding: 50px 0;
    }
    
    .mission-images {
        gap: 15px;
    }
    
    .mission-img-large {
        width: 60%;
    }
    
    .mission-img-small {
        width: 35%;
        top: 30px;
    }
    
    .mission-text h2 {
        font-size: 32px;
    }
    
    .mission-text p {
        font-size: 15px;
    }
    
    .about-work-section {
        padding: 50px 0;
    }
    
    .about-work-section h2 {
        font-size: 32px;
    }
    
    .work-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .work-gallery img {
        height: 320px;
    }
    
    .work-details {
        padding: 50px 0;
    }
    
    .work-details h2 {
        font-size: 32px;
    }
    
    .work-detail-text h3 {
        font-size: 26px;
    }
    
    .work-detail-text p {
        font-size: 15px;
    }
    
    .stay-informed-about {
        padding: 50px 0;
    }
    
    .stay-informed-about h2 {
        font-size: 32px;
    }
}



/* Services Page Styles */
.services-page-hero {
    background-color: #1a2332;
    padding: 80px 0 60px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.services-page-grid {
    background-color: #1a2332;
    padding: 40px 0 100px;
}

/* Our Work Section */
.our-work {
    background-color: #fff;
    padding: 100px 0;
}

.our-work h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 80px;
}

.work-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.work-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-images {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.work-image-large {
    flex: 1;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-image-small {
    flex: 1;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.work-content h3 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
}

.work-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.work-content button {
    flex-shrink: 0;
    padding: 16px 40px;
    font-size: 16px;
}

.btn-outline-dark {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: white;
}

.work-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.work-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-outline-dark {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: white;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #2d3e5f;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.stars {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.testimonial-quote {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 500;
}

/* Subscription Plans */
.subscription-plans {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.subscription-plans h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.subscription-plans > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
}


/* About Page Styles */
.who-we-are {
    background-color: #fff;
    padding: 100px 0;
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.who-text h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.who-text p {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
    line-height: 1.8;
}

.who-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Our Mission Section */
.our-mission {
    background-color: #f8f8f8;
    padding: 100px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.mission-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 150px;
}

.mission-img-large {
    width: 400px;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.mission-img-small {
    width: 263px;
    height: 344px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.mission-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.mission-text p {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
}

/* About Work Section */
.about-work-section {
    background-color: #f8f8f8;
    padding: 100px 0;
    text-align: center;
}

.about-work-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-work-section .section-subtitle {
    color: #999;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.work-gallery img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.work-gallery img:hover {
    transform: translateY(-10px);
}

/* Work Details Section */
.work-details {
    background-color: #f8f8f8;
    padding: 100px 0;
}

.work-details h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.work-details .section-subtitle {
    color: #999;
}

.work-detail-item {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.work-detail-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-detail-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.work-detail-text p {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
}

/* Stay Informed About */
.stay-informed-about {
    background-color: #1a2332;
    padding: 80px 0;
    text-align: center;
}

.stay-informed-about h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.stay-informed-about p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.informed-form {
    max-width: 500px;
    margin: 0 auto;
}


/* Contact Page Styles */
.contact-hero {
    background-color: #fff;
    padding: 50px 0;
}

.contact-wrapper {
    position: relative;
    min-height: 700px;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    padding-bottom: 100px;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: #fff;
    padding: 0px 0px 30px 30px;
    border-radius: 0 0 0 15px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ccc;
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}

.contact-image-bg {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    z-index: 1;
}

.contact-image-bg img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Our Location Section */
.our-location {
    background-color: #fff;
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.location-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.location-item p {
    font-size: 16px;
    color: #666;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stay Informed Contact */
.stay-informed-contact {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.stay-informed-contact h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.stay-informed-contact p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info h1,
    .location-text h2,
    .stay-informed-contact h2 {
        font-size: 36px;
    }
}
