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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

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

/* Header */
header {
    background: #1a3a5c;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #a8c5e0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

nav a:hover, nav a.active {
    border-bottom-color: #f9a825;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #f9a825;
    color: #1a3a5c;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #f57f17;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a3a5c;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #1a3a5c;
    border-radius: 4px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a3a5c;
    color: white;
}

/* Features */
.features {
    padding: 60px 0;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h3 {
    color: #1a3a5c;
    margin-bottom: 10px;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}

.services-preview h2 {
    color: #1a3a5c;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: left;
}

.service-card h3 {
    color: #1a3a5c;
    margin-bottom: 10px;
}

/* Testimonial */
.testimonial {
    padding: 60px 0;
    background: #1a3a5c;
    color: white;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #a8c5e0;
    margin-top: 15px;
}

/* CTA */
.cta {
    padding: 60px 0;
    background: #f9a825;
    text-align: center;
}

.cta h2 {
    color: #1a3a5c;
    margin-bottom: 15px;
}

.cta p {
    color: #1a3a5c;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: #1a3a5c;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
    background: white;
}

.service-detail {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h3 {
    color: #1a3a5c;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-detail ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-detail li {
    margin-bottom: 5px;
}

.service-detail .price {
    font-weight: bold;
    color: #1a3a5c;
    background: #f5f5f5;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 4px;
}

/* Brands */
.brands {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}

.brands h2 {
    color: #1a3a5c;
    margin-bottom: 20px;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.brand-list span {
    background: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    color: #1a3a5c;
}

/* About */
.about-content {
    padding: 60px 0;
    background: white;
}

.about-text h3 {
    color: #1a3a5c;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.about-text li {
    margin-bottom: 8px;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.team-member h4 {
    color: #1a3a5c;
    margin-bottom: 5px;
}

.team-member .role {
    color: #f9a825;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Contact */
.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info h3 {
    color: #1a3a5c;
    margin-top: 25px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.contact-form h3 {
    color: #1a3a5c;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3a5c;
}

.form-group small {
    color: #666;
    font-size: 0.85rem;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-text h3 {
    color: #1a3a5c;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-text li {
    margin-bottom: 5px;
}

/* Footer */
footer {
    background: #1a3a5c;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

footer h4 {
    margin-bottom: 15px;
    color: #f9a825;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 5px;
}

footer a {
    color: #a8c5e0;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2c5282;
    font-size: 0.85rem;
    color: #a8c5e0;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 50px 0;
    }
}