
.anti-uav-solution * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}
.anti-uav-solution {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    color: #2c3e50;
    line-height: 1.75;
}
.anti-uav-solution .hero {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: linear-gradient(120deg, #0a4d9c, #3498db);
    color: #fff;
    border-radius: 12px;
}
.anti-uav-solution .hero h1 {
    font-size: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
}
.anti-uav-solution .hero p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}
.anti-uav-solution .section {
    margin-bottom: 35px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.anti-uav-solution .section h2 {
    font-size: 22px;
    color: #0a4d9c;
    margin-bottom: 18px;
    padding-bottom: 6px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    font-weight: 600;
}
.anti-uav-solution .section p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #34495e;
}
.anti-uav-solution .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 15px;
}
.anti-uav-solution .card {
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: 0.3s;
    height: 100%;
}
.anti-uav-solution .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.15);
}
.anti-uav-solution .card h4 {
    color: #0a4d9c;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}
.anti-uav-solution .card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.anti-uav-solution table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
}
.anti-uav-solution table th,
.anti-uav-solution table td {
    padding: 12px;
    border: 1px solid #eee;
    text-align: left;
}
.anti-uav-solution table th {
    background: #0a4d9c;
    color: #fff;
    font-weight: 600;
}
.anti-uav-solution table tr:nth-child(even) {
    background: #fdfdfd;
}
.anti-uav-solution .list li {
    list-style: none;
    padding: 10px 15px 10px 28px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 8px;
    position: relative;
    font-size: 15px;
}
.anti-uav-solution .list li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: #27ae60;
    font-weight: bold;
}
.anti-uav-solution .scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    text-align: center;
    margin-top: 20px;
}
.anti-uav-solution .scene-item {
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eee;
}
.anti-uav-solution .scene-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
.anti-uav-solution .cta {
    background: linear-gradient(90deg, #0a4d9c, #3498db);
    color: #fff;
    text-align: center;
    padding: 35px 20px;
    border-radius: 12px;
    margin-top: 20px;
}
.anti-uav-solution .cta h2 {
    margin-bottom: 10px;
    font-size: 24px;
}
.anti-uav-solution .cta p {
    margin-bottom: 8px;
    font-size: 16px;
}
.anti-uav-solution .cta a {
    color: #25d366;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
}
.anti-uav-solution .cta .email-link {
    color: #ffffff !important;
    border-bottom: 1px dashed #fff;
}
.whatsapp {
    color: #25d366 !important;
    font-weight: bold;
    text-decoration: none;
}
/* Foldable FAQ */
.anti-uav-solution .faq-item {
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}
.anti-uav-solution .faq-question {
    background: #fff;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #0a4d9c;
    position: relative;
}
.anti-uav-solution .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #3498db;
    transition: 0.3s;
}
.anti-uav-solution .faq-question.active::after {
    content: "-";
}
.anti-uav-solution .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    background: #fdfdfd;
}
.anti-uav-solution .faq-answer-inner {
    padding: 0 20px 15px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.anti-uav-solution .faq-answer a {
    color: #0a4d9c;
    text-decoration: underline;
}
@media (max-width:768px) {
    .anti-uav-solution .hero h1 {
        font-size: 24px;
    }
    .anti-uav-solution .section {
        padding: 20px 15px;
    }
    .anti-uav-solution .grid,
    .anti-uav-solution .scene-grid {
        grid-template-columns: 1fr;
    }
}
