/* Political Campaign Page Styles */

.top-header {
    background-color: #001f3f;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-family: Arial, sans-serif;
    padding-left: 100px;
}

.top-header h1 {
    font-size: 3em;
    margin: 0 10px 0 0;
    display: inline;
    vertical-align: middle;
}

.top-header span {
    font-size: 2em;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-header {
        height: 80px;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-header h1 {
        font-size: 2em;
        margin: 0 5px 0 0;
        vertical-align: middle;
    }

    .top-header span {
        font-size: 1.5em;
        vertical-align: middle;
    }
}

.services-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.services-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.service-item:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.service-item:nth-child(1) {
    border-top-color: #1e3a8a;
    background-color: #f0f4ff;
}

.service-item:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.service-item:nth-child(2) {
    border-top-color: #dc2626;
    background-color: #fef2f2;
}

.service-item:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.service-item:nth-child(3) {
    border-top-color: #7c3aed;
    background-color: #faf5ff;
}

.service-item:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.service-item:nth-child(4) {
    border-top-color: #059669;
    background-color: #f0fdf4;
}

.service-item:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.service-item:nth-child(5) {
    border-top-color: #ea580c;
    background-color: #fff7ed;
}

.service-item:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.service-item:nth-child(6) {
    border-top-color: #0891b2;
    background-color: #ecfeff;
}

.service-item:nth-child(6):hover {
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}

.service-item:nth-child(7) {
    border-top-color: #be185d;
    background-color: #fdf2f8;
}

.service-item:nth-child(7):hover {
    box-shadow: 0 20px 40px rgba(190, 24, 93, 0.2);
}

.service-item:nth-child(8) {
    border-top-color: #0f766e;
    background-color: #f0fdfa;
}

.service-item:nth-child(8):hover {
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.2);
}

.service-item:nth-child(9) {
    border-top-color: #7c2d12;
    background-color: #fffbeb;
}

.service-item:nth-child(9):hover {
    box-shadow: 0 20px 40px rgba(124, 45, 18, 0.2);
}

.service-item:nth-child(10) {
    border-top-color: #1e40af;
    background-color: #eff6ff;
}

.service-item:nth-child(10):hover {
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.service-item:nth-child(11) {
    border-top-color: #b91c1c;
    background-color: #fef2f2;
}

.service-item:nth-child(11):hover {
    box-shadow: 0 20px 40px rgba(185, 28, 28, 0.2);
}

.service-item:nth-child(12) {
    border-top-color: #6b21a8;
    background-color: #faf5ff;
}

.service-item:nth-child(12):hover {
    box-shadow: 0 20px 40px rgba(107, 33, 168, 0.2);
}

.service-item i {
    font-size: 3.5em;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-item:nth-child(1) i { color: #1e3a8a; }
.service-item:nth-child(2) i { color: #dc2626; }
.service-item:nth-child(3) i { color: #7c3aed; }
.service-item:nth-child(4) i { color: #059669; }
.service-item:nth-child(5) i { color: #ea580c; }
.service-item:nth-child(6) i { color: #0891b2; }
.service-item:nth-child(7) i { color: #be185d; }
.service-item:nth-child(8) i { color: #0f766e; }
.service-item:nth-child(9) i { color: #7c2d12; }
.service-item:nth-child(10) i { color: #1e40af; }
.service-item:nth-child(11) i { color: #b91c1c; }
.service-item:nth-child(12) i { color: #6b21a8; }

@keyframes icon-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(2deg); }
    50% { transform: translateY(-4px) rotate(-2deg); }
    75% { transform: translateY(-6px) rotate(1deg); }
}

.service-item:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.service-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: #111827;
}

.service-item p {
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.service-item ul.service-details {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-item ul.service-details li {
    color: #374151;
    font-size: 0.95em;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
    line-height: 1.5;
    text-align: left;
}

.service-item ul.service-details li:hover {
    transform: translateX(5px);
    color: #1f2937;
}

.service-item ul.service-details li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.service-item ul.service-details li:hover:before {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .services-section .section-title h2 {
        font-size: 2em;
    }

    .services-section .section-title p {
        font-size: 1em;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-item {
        padding: 15px;
    }

    .service-item i {
        font-size: 2em;
    }
}

.industries-section {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.industries-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.industries-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.industries-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.industry-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.industry-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.industry-item:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

.industry-item:nth-child(1) {
    border-top-color: #1e40af;
    background-color: #eff6ff;
}

.industry-item:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.25);
}

.industry-item:nth-child(2) {
    border-top-color: #047857;
    background-color: #ecfdf5;
}

.industry-item:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(4, 120, 87, 0.25);
}

.industry-item:nth-child(3) {
    border-top-color: #7c2d12;
    background-color: #fef3c7;
}

.industry-item:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(124, 45, 18, 0.25);
}

.industry-item:nth-child(4) {
    border-top-color: #581c87;
    background-color: #f3e8ff;
}

.industry-item:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(88, 28, 135, 0.25);
}

.industry-item:nth-child(5) {
    border-top-color: #92400e;
    background-color: #fef7ed;
}

.industry-item:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(146, 64, 14, 0.25);
}

.industry-item:nth-child(6) {
    border-top-color: #0c4a6e;
    background-color: #f0f9ff;
}

.industry-item:nth-child(6):hover {
    box-shadow: 0 20px 40px rgba(12, 74, 110, 0.25);
}

.industry-item:nth-child(7) {
    border-top-color: #7f1d1d;
    background-color: #fef2f2;
}

.industry-item:nth-child(7):hover {
    box-shadow: 0 20px 40px rgba(127, 29, 29, 0.25);
}

.industry-item:nth-child(8) {
    border-top-color: #134e4a;
    background-color: #ecfdf5;
}

.industry-item:nth-child(8):hover {
    box-shadow: 0 20px 40px rgba(19, 78, 74, 0.25);
}

.industry-item i {
    font-size: 3.5em;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.industry-item:nth-child(1) i { color: #1e3a8a; }
.industry-item:nth-child(2) i { color: #dc2626; }
.industry-item:nth-child(3) i { color: #059669; }
.industry-item:nth-child(4) i { color: #7c3aed; }
.industry-item:nth-child(5) i { color: #ea580c; }
.industry-item:nth-child(6) i { color: #0891b2; }
.industry-item:nth-child(7) i { color: #be185d; }
.industry-item:nth-child(8) i { color: #0f766e; }

.industry-item:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.industry-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.industry-item:hover h3 {
    color: #111827;
}

.industry-item p {
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.industry-item ul.service-details {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.industry-item ul.service-details li {
    color: #374151;
    font-size: 0.95em;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
    line-height: 1.5;
    text-align: left;
}

.industry-item ul.service-details li:hover {
    transform: translateX(5px);
    color: #1f2937;
}

.industry-item ul.service-details li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.industry-item ul.service-details li:hover:before {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-section .section-title h2 {
        font-size: 2em;
    }

    .industries-section .section-title p {
        font-size: 1em;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-item {
        padding: 15px;
    }

    .industry-item i {
        font-size: 2em;
    }
}

.digital-strategies-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.digital-strategies-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.digital-strategies-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.digital-strategies-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.strategy-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.strategy-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.strategy-card:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

.strategy-card:nth-child(1) {
    border-top-color: #1e3a8a;
    background-color: #f0f4ff;
}

.strategy-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.strategy-card:nth-child(2) {
    border-top-color: #dc2626;
    background-color: #fef2f2;
}

.strategy-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.strategy-card:nth-child(3) {
    border-top-color: #059669;
    background-color: #f0fdf4;
}

.strategy-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.strategy-card:nth-child(4) {
    border-top-color: #7c3aed;
    background-color: #faf5ff;
}

.strategy-card:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.strategy-card:nth-child(5) {
    border-top-color: #ea580c;
    background-color: #fff7ed;
}

.strategy-card:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.strategy-card:nth-child(6) {
    border-top-color: #0891b2;
    background-color: #ecfeff;
}

.strategy-card:nth-child(6):hover {
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}

.strategy-card:nth-child(7) {
    border-top-color: #be185d;
    background-color: #fdf2f8;
}

.strategy-card:nth-child(7):hover {
    box-shadow: 0 20px 40px rgba(190, 24, 93, 0.2);
}

.strategy-card:nth-child(8) {
    border-top-color: #0f766e;
    background-color: #f0fdfa;
}

.strategy-card:nth-child(8):hover {
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.2);
}

.strategy-card i {
    font-size: 3.5em;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.strategy-card:nth-child(1) i { color: #1e3a8a; }
.strategy-card:nth-child(2) i { color: #dc2626; }
.strategy-card:nth-child(3) i { color: #059669; }
.strategy-card:nth-child(4) i { color: #7c3aed; }
.strategy-card:nth-child(5) i { color: #ea580c; }
.strategy-card:nth-child(6) i { color: #0891b2; }
.strategy-card:nth-child(7) i { color: #be185d; }
.strategy-card:nth-child(8) i { color: #0f766e; }

.strategy-card:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.strategy-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.strategy-card:hover h3 {
    color: #111827;
}

.strategy-card p {
    line-height: 1.6;
    color: #4b5563;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .digital-strategies-section .section-title h2 {
        font-size: 2em;
    }

    .digital-strategies-section .section-title p {
        font-size: 1em;
    }

    .strategies-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .strategy-card {
        padding: 20px;
    }

    .strategy-card i {
        font-size: 2em;
    }
}

.compliance-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.compliance-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.compliance-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.compliance-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.compliance-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.compliance-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.compliance-card:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

.compliance-card:nth-child(1) {
    border-top-color: #1e3a8a;
    background-color: #f0f4ff;
}

.compliance-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.compliance-card:nth-child(2) {
    border-top-color: #dc2626;
    background-color: #fef2f2;
}

.compliance-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.compliance-card:nth-child(3) {
    border-top-color: #059669;
    background-color: #f0fdf4;
}

.compliance-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.compliance-card:nth-child(4) {
    border-top-color: #7c3aed;
    background-color: #faf5ff;
}

.compliance-card:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.compliance-card:nth-child(5) {
    border-top-color: #ea580c;
    background-color: #fff7ed;
}

.compliance-card:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.compliance-card:nth-child(6) {
    border-top-color: #0891b2;
    background-color: #ecfeff;
}

.compliance-card:nth-child(6):hover {
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}

.compliance-card:nth-child(7) {
    border-top-color: #be185d;
    background-color: #fdf2f8;
}

.compliance-card:nth-child(7):hover {
    box-shadow: 0 20px 40px rgba(190, 24, 93, 0.2);
}

.compliance-card:nth-child(8) {
    border-top-color: #0f766e;
    background-color: #f0fdfa;
}

.compliance-card:nth-child(8):hover {
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.2);
}

.compliance-card i {
    font-size: 3.5em;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.compliance-card:nth-child(1) i { color: #1e3a8a; }
.compliance-card:nth-child(2) i { color: #dc2626; }
.compliance-card:nth-child(3) i { color: #059669; }
.compliance-card:nth-child(4) i { color: #7c3aed; }
.compliance-card:nth-child(5) i { color: #ea580c; }
.compliance-card:nth-child(6) i { color: #0891b2; }
.compliance-card:nth-child(7) i { color: #be185d; }
.compliance-card:nth-child(8) i { color: #0f766e; }

.compliance-card:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.compliance-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.compliance-card:hover h3 {
    color: #111827;
}

.compliance-card p {
    line-height: 1.6;
    color: #4b5563;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .compliance-section .section-title h2 {
        font-size: 2em;
    }

    .compliance-section .section-title p {
        font-size: 1em;
    }

    .compliance-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .compliance-card {
        padding: 20px;
    }

    .compliance-card i {
        font-size: 2em;
    }
}

.why-choose-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.feature-card:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

.feature-card:nth-child(1) {
    border-top-color: #1e3a8a;
    background-color: #f0f4ff;
}

.feature-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.feature-card:nth-child(2) {
    border-top-color: #dc2626;
    background-color: #fef2f2;
}

.feature-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.feature-card:nth-child(3) {
    border-top-color: #059669;
    background-color: #f0fdf4;
}

.feature-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.feature-card:nth-child(4) {
    border-top-color: #7c3aed;
    background-color: #faf5ff;
}

.feature-card:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.feature-card:nth-child(5) {
    border-top-color: #ea580c;
    background-color: #fff7ed;
}

.feature-card:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.feature-card:nth-child(6) {
    border-top-color: #0891b2;
    background-color: #ecfeff;
}

.feature-card:nth-child(6):hover {
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}

.feature-card i {
    font-size: 3.5em;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-card:nth-child(1) i { color: #1e3a8a; }
.feature-card:nth-child(2) i { color: #dc2626; }
.feature-card:nth-child(3) i { color: #059669; }
.feature-card:nth-child(4) i { color: #7c3aed; }
.feature-card:nth-child(5) i { color: #ea580c; }
.feature-card:nth-child(6) i { color: #0891b2; }

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.feature-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #111827;
}

.feature-card p {
    line-height: 1.6;
    color: #4b5563;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-section .section-title h2 {
        font-size: 2em;
    }

    .why-choose-section .section-title p {
        font-size: 1em;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card i {
        font-size: 2em;
    }
}

.dm-stats-section {
    padding: 50px 0;
    background-color: #001f3f;
    color: white;
}

.dm-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat h3 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat p {
    font-size: 1.2em;
    opacity: 0.9;
}

.counter {
    display: inline-block;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat h3 {
        font-size: 2em;
    }

    .stat p {
        font-size: 1em;
    }
}

.success-stories-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.success-stories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-stories-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.success-stories-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.story-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.story-card:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

.story-card:nth-child(1) {
    border-top-color: #1e3a8a;
    background-color: #f0f4ff;
}

.story-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.story-card:nth-child(2) {
    border-top-color: #dc2626;
    background-color: #fef2f2;
}

.story-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.story-card:nth-child(3) {
    border-top-color: #059669;
    background-color: #f0fdf4;
}

.story-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.story-header i {
    font-size: 2.5em;
    margin-right: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.story-card:nth-child(1) .story-header i { color: #1e3a8a; }
.story-card:nth-child(2) .story-header i { color: #dc2626; }
.story-card:nth-child(3) .story-header i { color: #059669; }

.story-card:hover .story-header i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.story-header h3 {
    font-size: 1.6em;
    color: #1f2937;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.story-card:hover .story-header h3 {
    color: #111827;
}

.story-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.story-stats span {
    background-color: #001f3f;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin: 5px;
}

@media (max-width: 768px) {
    .success-stories-section .section-title h2 {
        font-size: 2em;
    }

    .success-stories-section .section-title p {
        font-size: 1em;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-card {
        padding: 20px;
    }

    .story-stats {
        flex-direction: column;
        align-items: center;
    }
}

.process-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.process-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.process-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.process-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.process-item:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

.process-item:nth-child(1) {
    border-top-color: #1e3a8a;
    background-color: #f0f4ff;
}

.process-item:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.process-item:nth-child(2) {
    border-top-color: #dc2626;
    background-color: #fef2f2;
}

.process-item:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.process-item:nth-child(3) {
    border-top-color: #059669;
    background-color: #f0fdf4;
}

.process-item:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.process-item:nth-child(4) {
    border-top-color: #7c3aed;
    background-color: #faf5ff;
}

.process-item:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.process-item:nth-child(5) {
    border-top-color: #ea580c;
    background-color: #fff7ed;
}

.process-item:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.process-item:nth-child(6) {
    border-top-color: #0891b2;
    background-color: #ecfeff;
}

.process-item:nth-child(6):hover {
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}

.process-item:nth-child(7) {
    border-top-color: #be185d;
    background-color: #fdf2f8;
}

.process-item:nth-child(7):hover {
    box-shadow: 0 20px 40px rgba(190, 24, 93, 0.2);
}

.process-item:nth-child(8) {
    border-top-color: #0f766e;
    background-color: #f0fdfa;
}

.process-item:nth-child(8):hover {
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.2);
}

.process-item .process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.process-item:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
}

.process-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.process-item:hover h3 {
    color: #111827;
}

.process-item p {
    line-height: 1.6;
    color: #4b5563;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.process-item ul.service-details {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.process-item ul.service-details li {
    color: #374151;
    font-size: 0.9em;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.process-item ul.service-details li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section .section-title h2 {
        font-size: 2em;
    }

    .process-section .section-title p {
        font-size: 1em;
    }

    .process-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .process-item {
        padding: 20px;
    }

    .process-item .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
}

.platform-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.platform-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.platform-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.platform-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tool-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.tool-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.tool-item:hover::before {
    background-color: rgba(255,255,255,0.1);
    animation: shimmer 2s ease-in-out infinite;
}

.tool-item:nth-child(1) {
    border-top-color: #1e3a8a;
    background-color: #f0f4ff;
}

.tool-item:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.tool-item:nth-child(2) {
    border-top-color: #dc2626;
    background-color: #fef2f2;
}

.tool-item:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.tool-item:nth-child(3) {
    border-top-color: #059669;
    background-color: #f0fdf4;
}

.tool-item:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.tool-item:nth-child(4) {
    border-top-color: #7c3aed;
    background-color: #faf5ff;
}

.tool-item:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.tool-item:nth-child(5) {
    border-top-color: #ea580c;
    background-color: #fff7ed;
}

.tool-item:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.tool-item:nth-child(6) {
    border-top-color: #0891b2;
    background-color: #ecfeff;
}

.tool-item:nth-child(6):hover {
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}

.tool-item i {
    font-size: 3.5em;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tool-item:nth-child(1) i { color: #1e3a8a; }
.tool-item:nth-child(2) i { color: #dc2626; }
.tool-item:nth-child(3) i { color: #059669; }
.tool-item:nth-child(4) i { color: #7c3aed; }
.tool-item:nth-child(5) i { color: #ea580c; }
.tool-item:nth-child(6) i { color: #0891b2; }

.tool-item:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.tool-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.tool-item:hover h3 {
    color: #111827;
}

.tool-item p {
    line-height: 1.6;
    color: #4b5563;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-section .section-title h2 {
        font-size: 2em;
    }

    .platform-section .section-title p {
        font-size: 1em;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tool-item {
        padding: 15px;
    }

    .tool-item i {
        font-size: 2em;
    }
}

.faq-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section .section-title h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.faq-section .section-title p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: #001f3f;
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #003366;
}

.faq-question span {
    margin: 0;
    font-size: 1.3em;
    font-weight: bold;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background-color: white;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section .section-title h2 {
        font-size: 2em;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }
}

.dm-cta-section {
    background-color: #001f3f;
    padding: 50px 0;
    color: white;
    text-align: center;
}

.dm-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dm-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.dm-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #001f3f;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .dm-cta-section h2 {
        font-size: 2em;
    }

    .dm-cta-section p {
        font-size: 1em;
    }

    .btn {
        padding: 12px 25px;
    }
}

footer {
    background-color: #00243c;
    color: #ffffff;
    padding: 50px 0 20px;
    font-family: 'Poppins', Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #001f3f;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social i {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social i:hover {
    color: #001f3f;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #cccccc;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
}

.contact-item i {
    color: #001f3f;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}