/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header Section */
.header {
    background-color: #000;
    position: relative;
    padding: 0 2rem 4rem 2rem;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    z-index: 100;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.1em;
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.menu-close span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
}

.menu-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-close span:nth-child(2) {
    opacity: 0;
}

.menu-close span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu Navigation */
.menu-nav ul {
    list-style: none;
    text-align: center;
}

.menu-nav li {
    margin: 2rem 0;
}

.menu-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: block;
}

.menu-nav a:hover {
    color: #00246B;
    transform: translateY(-5px);
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    justify-content: center;
    padding-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    width: 100%;
}

.hero-bottom {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
}

.hero-text {
    max-width: 400px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-icon {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.cta-button:hover .cta-icon {
    transform: rotate(360deg);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* About Section */
.about-section {
    background-color: #00246B;
    padding: 6rem 2rem;
    min-height: 100vh;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Left Side */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 36, 107, 0.15);
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-tagline {
    margin-top: 1rem;
}

.about-tagline p {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
}

.about-description {
    max-width: 400px;
}

.about-description p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.8;
}

/* Right Side */
.about-right {
    padding-left: 2rem;
}

.about-main-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
}



/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 1rem 3rem 1rem;
    }
    
    .hero-content {
        margin-top: 4rem;
    }
    
    .hero-bottom {
        display: block;
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        margin-bottom: 3rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .cta-button {
        padding: 0.875rem 1.25rem;
        gap: 0.75rem;
    }
    
    .cta-icon {
        width: 35px;
        height: 35px;
    }
    
    .cta-arrow {
        width: 18px;
        height: 18px;
    }
    
    .menu-nav a {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 1rem 2rem 1rem;
    }
    
    .hero-content {
        margin-top: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-bottom {
        margin-top: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        font-size: 1rem;
    }
    
    .cta-icon {
        width: 30px;
        height: 30px;
    }
    
    .cta-arrow {
        width: 16px;
        height: 16px;
    }
    
    .menu-nav a {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .cta-button {
        padding: 0.625rem 0.875rem;
        gap: 0.375rem;
        font-size: 0.9rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    .cta-icon {
        width: 28px;
        height: 28px;
    }
    
    .cta-arrow {
        width: 14px;
        height: 14px;
    }
    
    .message-cta-button {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        margin-top: 2rem;
        max-width: 280px;
        width: 100%;
        overflow: hidden;
    }
    
    .message-cta-text {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }
    
    .message-cta-arrow {
        width: 16px;
        height: 16px;
    }
    
    .message-cta-button:hover .message-cta-arrow {
        transform: translateX(2px);
    }
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-container {
        gap: 3rem;
    }
    
    .about-right {
        padding-left: 1rem;
    }
    
    .about-main-title {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-right {
        padding-left: 0;
    }
    
    .about-image {
        height: 250px;
    }
    
    .about-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-container {
        gap: 2rem;
    }
    
    .about-image {
        height: 200px;
    }
    
    .about-main-title {
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-section {
    background-color: #000;
    padding: 6rem 2rem;
    min-height: 100vh;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    height: 400px;
}

.services-row:nth-child(2) {
    grid-template-columns: 2fr 1fr;
}

/* Service Cards */
.service-card {
    position: relative;
    background: #000;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #fff;

    box-shadow: none;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.4s cubic-bezier(.2,.8,.2,1);

    overflow: hidden;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* Service Card Content */
.service-tag {
    margin-bottom: 16px;
}

.service-tag span {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.service-title {
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #fff;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* Service Arrow */
.service-arrow {
    align-self: flex-end;
    margin-top: auto;
}

.service-arrow-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.service-card:hover .service-arrow-icon {
    transform: translateX(4px) rotate(360deg);
    opacity: 1;
}

/* Services Section Responsive */
@media (max-width: 1024px) {
    .services-row {
        height: 350px;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-title {
        font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1rem;
    }
    
    .services-row {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1.5rem;
    }
    
    .services-row:nth-child(2) {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: 300px;
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .service-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 1rem;
    }
    
    .services-container {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
}

/* Steps Section */
.steps-section {
    background-color: #00246B;
    padding: 8rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-container {
    max-width: 1200px;
    width: 100%;
    min-height: 600px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    grid-template-rows: auto 300px auto;
    gap: 2rem;
    align-items: center;
}

/* Central placeholder */
.steps-center {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-placeholder {
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.center-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-icon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    animation: rotate-continuous 6s linear infinite;
}

@keyframes rotate-continuous {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Step Items */
.step-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    padding: 1rem 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.step-item:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.step-1 {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: end;
    text-align: right;
}

.step-2 {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    align-self: end;
    text-align: left;
}

.step-3 {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    align-self: start;
    text-align: right;
}

.step-4 {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
    align-self: start;
    text-align: left;
}

/* Step Content */
.step-number {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 400;
    font-family: monospace;
}

.step-title {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: none;
    word-wrap: break-word;
}

/* Step Arrow */
.step-arrow {
    margin-top: 1rem;
    align-self: flex-start;
}

.step-1 .step-arrow,
.step-3 .step-arrow {
    align-self: flex-end;
}

.step-arrow-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.step-item:hover .step-arrow-icon {
    opacity: 1;
    transform: translateX(5px);
}

/* Steps Section Responsive */
@media (max-width: 1024px) {
    .steps-container {
        min-height: 500px;
        grid-template-columns: 1fr 250px 1fr;
        grid-template-rows: auto 250px auto;
    }
    
    .center-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .rotating-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    .steps-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
    }
    
    .step-item {
        text-align: center;
        align-self: center;
        max-width: 100%;
        padding: 2rem 0;
    }
    
    .step-title {
        font-size: 2.5rem;
    }
    
    .step-description {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .step-arrow {
        align-self: center;
        margin-top: 1.5rem;
    }
    
    .step-1 .step-arrow,
    .step-3 .step-arrow {
        align-self: center;
    }
    
    .steps-center {
        display: none;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 3rem 1rem;
    }
    
    .steps-container {
        gap: 2rem;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        max-width: 300px;
    }
}

/* Message Section */
.message-section {
    background-color: #000;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.message-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.message-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem auto 0 auto;
    max-width: 700px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out 0.2s;
}

.message-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Message CTA Button */
.message-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    margin-top: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.message-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.message-cta-text {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.message-cta-arrow {
    width: 20px;
    height: 20px;
    filter: brightness(0);
    transition: transform 0.3s ease;
}

.message-cta-button:hover .message-cta-arrow {
    transform: translateX(5px);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    width: 100%;
    justify-self: center;
    align-items: start;
}

.pricing-card {
    background: #000;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
                box-shadow 0.4s cubic-bezier(.2,.8,.2,1);
    height: auto;
    min-height: auto;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.pricing-title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
    flex-grow: 1;
}

.pricing-feature {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1rem 0 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
}

/* Message Section Responsive */
@media (max-width: 1024px) {
    .message-section {
        padding: 6rem 2rem;
    }
    
    .message-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .message-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .pricing-cards {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .message-section {
        padding: 4rem 1rem;
    }
    
    .message-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .message-subtitle {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .message-section {
        padding: 3rem 1rem;
    }
    
    .message-title {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }
    
    .pricing-cards {
        margin-top: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .pricing-footer {
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #00246B;
    padding: 8rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 4rem 0;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    flex: 1;
    margin-right: 2rem;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.faq-item.active .faq-circle {
    background-color: #fff;
    border-color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-right: 3rem;
}

/* FAQ Section Responsive */
@media (max-width: 1024px) {
    .faq-section {
        padding: 6rem 2rem;
        min-height: 70vh;
    }
    
    .faq-title {
        font-size: clamp(2rem, 5vw, 4rem);
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 1.5rem 0;
    }
    
    .faq-question-text {
        font-size: 1rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1rem;
        min-height: 60vh;
    }
    
    .faq-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
        margin-bottom: 2.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 0;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
        margin-right: 1rem;
    }
    
    .faq-answer p {
        padding-right: 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .faq-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem 0;
    }
    
    .faq-question-text {
        font-size: 0.9rem;
        margin-right: 0.75rem;
    }
    
    .faq-answer p {
        padding-right: 1rem;
        font-size: 0.85rem;
    }
}

/* Footer Section */
.footer {
    background-color: #000;
    padding: 4rem 2rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem 0;
    text-transform: none;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: none;
    word-wrap: break-word;
}

.footer-line {
    width: 95%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #fff;
}

.linkedin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.linkedin-icon {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 2rem 1rem;
    }
    
    .footer-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-line {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-email a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .footer-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-line {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        gap: 1rem;
    }
    
    .linkedin-link {
        width: 45px;
        height: 45px;
    }
    
    .linkedin-icon {
        width: 45px;
        height: 45px;
    }
}

/* Make wide cards visually identical */
.services-row > .service-card {
    justify-content: space-between;
}

/* Services Content Section - Optimized for Content */
.services-content-section {
    background-color: #00246B;
    padding: 8rem 2rem;
}

.services-content-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Services Intro */
.services-intro {
    margin-bottom: 4rem;
}

.services-intro-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    word-wrap: break-word;
}

.services-intro-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight-text {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Service Process Items */
.service-process-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-process-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-process-item:last-child {
    border-bottom: none;
}

.service-process-number {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.service-process-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-process-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Services Content Responsive - Optimized */
@media (max-width: 1024px) {
    .services-content-section {
        padding: 6rem 2rem;
    }
    
    .services-intro {
        margin-bottom: 3rem;
    }
    
    .services-intro-title {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }
    
    .service-process-items {
        gap: 2.5rem;
    }
    
    .service-process-item {
        padding: 1.5rem 0;
    }
    
    .service-process-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .services-content-section {
        padding: 4rem 1rem;
    }
    
    .services-intro {
        margin-bottom: 2rem;
    }
    
    .services-intro-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .service-process-items {
        gap: 2rem;
    }
    
    .service-process-item {
        padding: 1rem 0;
    }
    
    .service-process-title {
        font-size: 1.4rem;
    }
    
    .service-process-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-content-section {
        padding: 3rem 1rem;
    }
    
    .service-process-items {
        gap: 1.5rem;
    }
    
    .service-process-title {
        font-size: 1.2rem;
    }
    
    .service-process-description {
        font-size: 0.9rem;
    }
}
/* Contact Section */
.contact-section {
    background-color: #00246B;
    padding: 8rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Left Side */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-question {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.contact-directory {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.directory-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.directory-email {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.directory-email:hover {
    color: #fff;
}

/* Contact Form */
.contact-right {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-button {
    background-color: #fff;
    color: #00246B;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Form Message */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    display: none;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* Plan Selection */
.plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.plan-option {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.plan-option:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.plan-option input[type="radio"]:checked ~ .plan-label {
    color: #fff;
}

.plan-option input[type="radio"]:checked ~ .plan-label::before {
    background-color: #00246B;
    border-color: #00246B;
}

.plan-option input[type="radio"]:checked ~ .plan-label::after {
    opacity: 1;
}

.plan-option:has(input[type="radio"]:checked) {
    background-color: rgba(0, 36, 107, 0.1);
    border-color: #00246B;
}

.plan-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.plan-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.plan-label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.plan-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 6rem 2rem;
    }
    
    .contact-container {
        gap: 3rem;
    }
    
    .contact-right {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-right {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-question {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-right {
        padding: 1.5rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .plan-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .plan-option {
        padding: 1rem;
    }
    
    .plan-name {
        font-size: 0.95rem;
    }
    
    .plan-desc {
        font-size: 0.8rem;
    }
}
/* Logo Link Styles */
.logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo a h1 {
    margin: 0;
}
/* Profile Section */
.profile-section {
    background-color: #00246B;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-image {
    width: 400px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-image:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.1);
}

.profile-text {
    max-width: 500px;
}

.profile-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Profile Section Responsive */
@media (max-width: 768px) {
    .profile-section {
        padding: 3rem 1rem;
    }
    
    .profile-container {
        gap: 1.5rem;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
        border-radius: 20px;
    }
    
    .profile-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .profile-section {
        padding: 2rem 1rem;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
        border-radius: 18px;
    }
    
    .profile-text p {
        font-size: 0.85rem;
    }
}

/* Process Details Section */
.process-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-details-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.process-step::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    line-height: 1.2;
}

.process-step-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.process-step-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-handoff-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Process Details Responsive */
@media (max-width: 768px) {
    .process-details {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .process-details-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .process-steps {
        gap: 1.25rem;
    }
    
    .process-step {
        padding-left: 1.25rem;
    }
    
    .process-step-title {
        font-size: 1rem;
    }
    
    .process-step-description {
        font-size: 0.9rem;
    }
    
    .process-handoff-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .process-details {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .process-details-title {
        font-size: 1.1rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .process-step {
        padding-left: 1rem;
    }
    
    .process-step::before {
        font-size: 1.2rem;
    }
    
    .process-step-title {
        font-size: 0.95rem;
    }
    
    .process-step-description {
        font-size: 0.85rem;
    }
    
    .process-handoff-description {
        font-size: 0.85rem;
    }
}

/* Process Sublist */
.process-sublist {
    list-style: none;
    padding-left: 1rem;
    margin: 0.75rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-sublist li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.process-sublist li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Process Sublist Responsive */
@media (max-width: 768px) {
    .process-sublist {
        padding-left: 0.75rem;
    }
    
    .process-sublist li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .process-sublist {
        padding-left: 0.5rem;
    }
    
    .process-sublist li {
        font-size: 0.8rem;
    }
}