* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    line-height: 1.6;

    color: #333;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



header {

    background: linear-gradient(135deg, #000000, #FFB612);

    color: white;

    padding: 2rem 0;

    box-shadow: 0 4px 6px rgba(0,0,0,0.1);

    position: relative;

    overflow: hidden;

}



header::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, 

        transparent 0%, 

        #FFB612 20%, 

        #000000 40%, 

        #FFB612 60%, 

        #000000 80%, 

        transparent 100%);

}



.header-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

}



.logo h1 {

    font-size: 2.2rem;

    font-weight: 700;

}



.tagline {

    font-size: 1.1rem;

    opacity: 0.9;

    margin-top: 0.5rem;

}



.shield-icon {

    font-size: 3rem;

    opacity: 0.8;

}



nav {

    background: #000000;

    padding: 1rem 0;

}



nav ul {

    list-style: none;

    display: flex;

    justify-content: center;

    gap: 2rem;

}



nav a {

    color: white;

    text-decoration: none;

    font-weight: 500;

    padding: 0.5rem 1rem;

    border-radius: 4px;

    transition: background 0.3s;

}



nav a:hover {

    background: rgba(255,255,255,0.1);

}



main {

    padding: 3rem 0;

}



.hero {

    text-align: center;

    margin-bottom: 4rem;

    padding: 2rem;

    background: linear-gradient(to right, #f8fafc, #e2e8f0);

    border-radius: 10px;

}



.hero h2 {

    font-size: 2.5rem;

    color: #000000;

    margin-bottom: 1rem;

}



.hero p {

    font-size: 1.3rem;

    color: #64748b;

    max-width: 600px;

    margin: 0 auto;

}



.services {

    margin-bottom: 4rem;

}



.services h2 {

    text-align: center;

    font-size: 2.2rem;

    color: #000000;

    margin-bottom: 2rem;

}



.service-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    margin-top: 2rem;

}



.service-card {

    background: white;

    padding: 2rem;

    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0,0,0,0.1);

    border-left: 4px solid #FFB612;

    transition: transform 0.3s, box-shadow 0.3s;

}



.service-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 15px rgba(0,0,0,0.15);

}



.service-card h3 {

    color: #000000;

    margin-bottom: 1rem;

    font-size: 1.3rem;

}



.about {

    background: #f8fafc;

    padding: 3rem 2rem;

    border-radius: 10px;

    margin-bottom: 4rem;

}



.about h2 {

    color: #000000;

    margin-bottom: 1.5rem;

    text-align: center;

    font-size: 2.2rem;

}



.about-content {

    max-width: 800px;

    margin: 0 auto;

    font-size: 1.1rem;

    color: #4b5563;

}



.contact {

    background: white;

    padding: 3rem 2rem;

    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0,0,0,0.1);

}



.contact h2 {

    color: #000000;

    margin-bottom: 2rem;

    text-align: center;

    font-size: 2.2rem;

}



.contact-form {

    max-width: 600px;

    margin: 0 auto;

}



.form-group {

    margin-bottom: 1.5rem;

}



.form-group label {

    display: block;

    margin-bottom: 0.5rem;

    font-weight: 500;

    color: #374151;

}



.form-group input,

.form-group textarea,

.form-group select {

    width: 100%;

    padding: 0.75rem;

    border: 2px solid #e5e7eb;

    border-radius: 6px;

    font-size: 1rem;

    transition: border-color 0.3s;

}



.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus {

    outline: none;

    border-color: #FFB612;

    box-shadow: 0 0 0 3px rgba(255, 182, 18, 0.1);

}



.form-group textarea {

    resize: vertical;

    min-height: 120px;

}



.btn {

    background: linear-gradient(135deg, #000000, #FFB612);

    color: white;

    padding: 1rem 2rem;

    border: none;

    border-radius: 6px;

    font-size: 1.1rem;

    font-weight: 500;

    cursor: pointer;

    transition: transform 0.2s, box-shadow 0.2s;

    width: 100%;

}



.btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 12px rgba(255, 182, 18, 0.3);

}



footer {

    background: #1f2937;

    color: white;

    text-align: center;

    padding: 2rem 0;

    margin-top: 4rem;

}



.contact-info {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;

    margin-bottom: 3rem;

    text-align: center;

}



.contact-info-card {

    background: #f1f5f9;

    padding: 1.5rem;

    border-radius: 8px;

}



.contact-info-card h3 {

    color: #000000;

    margin-bottom: 0.5rem;

}



@media (max-width: 768px) {

    .header-content {

        text-align: center;

    }

    

    .hero h2 {

        font-size: 2rem;

    }

    

    nav ul {

        flex-direction: column;

        gap: 0.5rem;

    }

}