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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

.header {
    background-color: #1a2a4a; /* Dark navy blue - matching logo background */
    padding: 1rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(26, 42, 74, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .header {
        padding: 1rem 1.5rem;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

@media (max-width: 1024px) {
    .logo {
        height: 45px;
    }
}

.logo:hover {
    opacity: 0.9;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        display: none;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 1rem;
    }
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    opacity: 0.8;
    color: #5a8ab0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5a8ab0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 42, 74, 0.98);
    backdrop-filter: blur(10px);
    min-width: 180px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(90, 138, 176, 0.2);
    color: #5a8ab0;
    border-left-color: #5a8ab0;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero {
        min-height: 550px;
    }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ensure video renders at full quality with hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Prevent pixelation by allowing browser to use native video resolution */
    min-width: 100%;
    min-height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 42, 74, 0.3) 0%,
        rgba(26, 42, 74, 0.1) 50%,
        rgba(26, 42, 74, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(135deg, #b8e0ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 12px rgba(184, 224, 255, 0.9)) 
            drop-shadow(0 0 24px rgba(184, 224, 255, 0.7))
            drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8))
            drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.cta-primary {
    background: linear-gradient(135deg, #5a8ab0 0%, #7ab8e0 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(90, 138, 176, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 138, 176, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #b8e0ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 12px rgba(184, 224, 255, 0.9)) 
            drop-shadow(0 0 24px rgba(184, 224, 255, 0.7))
            drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8))
            drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-stats {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        margin-bottom: 3rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

main {
    position: relative;
    z-index: 100;
    background-color: #fff;
    color: #333;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    main {
        padding: 0;
    }
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-intro {
    text-align: center;
}

.about-lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-approach,
.about-expertise {
    max-width: 850px;
    margin: 0 auto;
}

.approach-title,
.values-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.values-title {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(90, 138, 176, 0.15);
    border-color: #5a8ab0;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.value-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .about {
        padding: 5rem 1.5rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-lead {
        font-size: 1.25rem;
    }
    
    .about-text {
        font-size: 1.05rem;
    }
    
    .approach-title,
    .values-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-lead {
        font-size: 1.15rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .approach-title,
    .values-title {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-lead {
        font-size: 1.05rem;
    }
    
    .value-icon {
        font-size: 2rem;
    }
    
    .value-name {
        font-size: 1.1rem;
    }
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.products-container {
    max-width: 1000px;
    margin: 0 auto;
}

.products-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.products-intro {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.products-purpose {
    margin-bottom: 4rem;
}

.purpose-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.purpose-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(90, 138, 176, 0.15);
    border-color: #5a8ab0;
}

.purpose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.purpose-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.purpose-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5a8ab0, #7ab8e0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(90, 138, 176, 0.2);
    border-color: #5a8ab0;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-content {
    position: relative;
    z-index: 1;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .product-icon-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(90, 138, 176, 0.2);
}

.product-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    flex: 1;
}

.product-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1024px) {
    .products {
        padding: 5rem 1.5rem;
    }
    
    .products-title {
        font-size: 2.5rem;
    }
    
    .products-intro {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .purpose-title {
        font-size: 1.75rem;
    }
    
    .purpose-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 4rem 1rem;
    }
    
    .products-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .products-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .purpose-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .purpose-item {
        padding: 2rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .product-name {
        font-size: 1.75rem;
    }
    
    .product-icon-wrapper {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    
    .product-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 3rem 1rem;
    }
    
    .products-title {
        font-size: 1.75rem;
    }
    
    .purpose-item {
        padding: 1.5rem;
    }
    
    .purpose-icon {
        font-size: 2.5rem;
    }
    
    .purpose-name {
        font-size: 1.25rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-icon-wrapper {
        width: 60px;
        height: 60px;
        padding: 8px;
    }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5a8ab0, transparent);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5a8ab0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(90, 138, 176, 0.1);
    border-radius: 50px;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-intro {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.services-focus {
    font-size: 1.125rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    font-style: italic;
}

.services-focus strong {
    color: #1a2a4a;
    font-weight: 600;
    font-style: normal;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5a8ab0, #7ab8e0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(90, 138, 176, 0.2);
    border-color: #5a8ab0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    flex: 1;
}

.service-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #5a8ab0;
    margin: 0 0 1.25rem 0;
    font-style: italic;
}

.service-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.25rem 0;
}

.service-note {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 1.25rem 0;
    padding: 1rem;
    background: rgba(90, 138, 176, 0.05);
    border-left: 3px solid #5a8ab0;
    border-radius: 4px;
}

.service-note strong {
    color: #1a2a4a;
    font-weight: 600;
}

.service-note a.service-inline-link {
    color: #5a8ab0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.service-note a.service-inline-link:hover {
    border-bottom-color: #5a8ab0;
}

.service-cta-link {
    margin: 1.5rem 0;
}

.service-cta-secondary {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #5a8ab0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.service-link:hover {
    color: #7ab8e0;
    transform: translateX(4px);
}

.service-cta-primary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.service-cta-primary .cta-button {
    display: inline-block;
    margin-bottom: 1rem;
}

.service-trust-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin: 0.75rem 0 0 0;
    line-height: 1.5;
}

.service-details {
    margin-top: 1.5rem;
}

.details-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 0.75rem;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.details-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5a8ab0;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-how {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.how-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.how-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.how-icon {
    font-size: 1.5rem;
    color: #5a8ab0;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.how-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.how-conclusion {
    font-size: 1.125rem;
    color: #1a2a4a;
    font-style: italic;
    margin-top: 2rem;
    line-height: 1.7;
}

.services-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.fit-section {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
}

.fit-for {
    border-top: 4px solid #5a8ab0;
}

.fit-not {
    border-top: 4px solid #dc3545;
}

.fit-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.fit-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1.5rem;
}

.fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-list li {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.fit-for .fit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a8ab0;
    font-weight: bold;
}

.fit-not .fit-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.services-cta {
    background: linear-gradient(135deg, #1a2a4a 0%, #2a4a6a 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: #fff;
    margin-top: 4rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-button {
    margin-top: 2rem;
    background: #fff;
    color: #1a2a4a;
}

.services-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .services {
        padding: 4rem 1.5rem;
    }
    
    .services-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .services-intro,
    .contact-intro {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 1rem;
    }
    
    .services-title,
    .contact-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .services-intro,
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .services-list {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .services-how {
        padding: 2rem;
    }
    
    .how-title {
        font-size: 1.5rem;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
    }
    
    .services-fit {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 2.5rem 1rem;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .services-how {
        padding: 1.5rem;
    }
    
    .how-title {
        font-size: 1.25rem;
    }
    
    .services-cta {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.25rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* Silent AWS Audit Form Section */
.audit-form-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.audit-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.audit-form-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.audit-form-intro {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audit-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(90, 138, 176, 0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-important {
    background: rgba(90, 138, 176, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(90, 138, 176, 0.2);
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label:not(.radio-option):not(.checkbox-option):not(.radio-group-label):not(.checkbox-group-label) {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a8ab0;
    box-shadow: 0 0 0 3px rgba(90, 138, 176, 0.1);
}

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

.radio-group-label,
.checkbox-group-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 1rem;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: #5a8ab0;
    background: rgba(90, 138, 176, 0.02);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radio-option input[type="radio"]:checked + span,
.checkbox-option input[type="checkbox"]:checked + span {
    color: #1a2a4a;
    font-weight: 500;
}

.radio-option:has(input[type="radio"]:checked),
.checkbox-option:has(input[type="checkbox"]:checked) {
    border-color: #5a8ab0;
    background: rgba(90, 138, 176, 0.08);
}

.radio-group-tiers {
    gap: 1rem;
}

.radio-tier {
    padding: 1.25rem;
    border: 2px solid #e9ecef;
}

.radio-tier-recommended {
    border-color: #5a8ab0;
    background: rgba(90, 138, 176, 0.05);
    position: relative;
}

.radio-tier-recommended::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    left: 1rem;
    background: #5a8ab0;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.tier-name {
    font-weight: 600;
    color: #1a2a4a;
    font-size: 1.05rem;
}

.tier-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.recommended-badge {
    color: #5a8ab0;
    font-weight: 600;
}

.form-helper-text {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.audit-submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a2a4a 0%, #2a4a6a 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(26, 42, 74, 0.3);
}

.audit-submit-btn:hover {
    background: linear-gradient(135deg, #2a4a6a 0%, #3a5a7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 42, 74, 0.4);
}

.audit-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .audit-form-section {
        padding: 5rem 1.5rem;
    }
    
    .audit-form-title {
        font-size: 2.5rem;
    }
    
    .audit-form {
        padding: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .audit-form-section {
        padding: 4rem 1rem;
    }
    
    .audit-form-title {
        font-size: 2rem;
    }
    
    .audit-form-intro {
        font-size: 1rem;
    }
    
    .audit-form {
        padding: 2rem 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .form-section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .audit-form {
        padding: 1.5rem;
    }
    
    .form-section-important {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-form {
    background: #fff;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(90, 138, 176, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 12px 40px rgba(90, 138, 176, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a8ab0;
    box-shadow: 0 0 0 3px rgba(90, 138, 176, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a2a4a 0%, #2a4a6a 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(26, 42, 74, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2a4a6a 0%, #3a5a7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 42, 74, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 1024px) {
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-intro {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2.5rem 1rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

.footer {
    background-color: #1a2a4a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .footer-content {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #5a8ab0;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #5a8ab0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
    z-index: 1001;
}

/* Tablet and smaller desktop */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-link {
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        min-width: 160px;
    }
}

/* Tablet */
@media (max-width: 900px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

/* Modern sleek styling - Mobile */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 42, 74, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 500px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: rgba(90, 138, 176, 0.1);
        margin-top: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-item {
        padding-left: 2rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.875rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-section p,
    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
    
    .logo {
        height: 30px;
    }
    
    .header {
        padding: 0.5rem 0.75rem;
    }
}

