.container {
    padding: 150px 80px 80px 80px;
}

.technologie-header {
    text-align: center;
    margin-bottom: 60px;
}

.technologie-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.drones h2, .software h2, .security h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #081548;
}

.drone {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.drone img {
    width: 500px;
    height: auto;
    border-radius: 5px;
    margin-right: 20px;
}

.drone-info {
    flex: 1;
}

.drone-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #081548;
    margin-bottom: 25px;
}

.drone-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px 0;
}

.drone-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.drone-info ul {
    padding-left: 20px;
}

.drone-info ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

.drone-info li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.drone-image {
    flex: 1;
    text-align: center;
}

.drone-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.software {
    margin-bottom: 80px;
}

.software p, .security p {
    font-size: 16px;
    margin-bottom: 20px;
}

.software ul {
    list-style-type: disc;
    padding-left: 20px;
}

.software ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

.security h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.camera-section {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.camera-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #081548;
    margin-bottom: 20px;
}

.camera-specs {
    margin-top: 30px;
}

.camera-specs h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.camera-specs ul {
    columns: 2;
    padding-left: 20px;
}

.camera-specs li {
    margin-bottom: 15px;
    break-inside: avoid;
}

.benefits {
    margin-bottom: 80px;
}

.benefits h2 {
    font-size: 32px;
    font-weight: 700;
    color: #081548;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #081548;
    margin-bottom: 15px;
}

.expertise {
    background-color: #081548;
    color: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.expertise h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.expertise p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.expertise .btn {
    background-color: #cf9903;
    margin-top: 30px;
}

.expertise .btn:hover {
    background-color: white;
    color: #081548;
}

/* Responsive styles */
@media (max-width: 992px) {
    .drone-principal {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .camera-specs ul {
        columns: 1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 120px 20px 40px 20px;
    }
    
    .drones h2, .software h2, .security h2 {
        font-size: 28px;
    }

    .drone {
        flex-direction: column;
        align-items: flex-start;
    }

    .drone img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .drone-info h3 {
        font-size: 20px;
    }

    .drone-info p, .drone-info ul li {
        font-size: 14px;
    }

    .drone-info h4 {
        font-size: 16px;
    }

    .software p, .security p, .software ul li {
        font-size: 14px;
    }

    .security {
        margin-bottom: 0;
    }

    .security h3 {
        font-size: 20px;
    }

    .camera-section {
        padding: 30px;
    }
    
    .expertise {
        padding: 30px;
    }
}