/* Reset and Base Styles */
* {
    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-color: #fff;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu .cta-button {
    background-color: #0066cc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-menu .cta-button:hover {
    background-color: #0052a3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-section .intro {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.hero-section .description {
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #fff;
    color: #0066cc;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Highlights Strip */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.highlight-item h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #fff;
}

.highlight-item p {
    font-size: 0.95em;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #0066cc;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1em;
    color: #555;
}

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

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.service-card h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.service-card ul {
    list-style-position: inside;
    color: #555;
}

.service-card li {
    margin-bottom: 8px;
}

/* ISO Standards Box */
.iso-standards {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.iso-standards h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.iso-standards ul {
    list-style-position: inside;
    margin: 20px 0;
}

.iso-standards li {
    margin-bottom: 12px;
    font-size: 1.05em;
}

.iso-standards .note {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: #fff;
}

.emphasis {
    text-align: center;
    font-size: 1.3em;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.why-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.why-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Who We Work With */
.who-we-work {
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.who-we-work h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.6em;
}

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

.industry-list span {
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 500;
}

.closing-text {
    margin-top: 20px;
    font-size: 1.05em;
    color: #555;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.consultation-info h3 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.consultation-info ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.consultation-info li {
    margin-bottom: 10px;
    color: #555;
}

.tagline {
    font-style: italic;
    color: #0066cc;
    font-weight: 600;
    margin-top: 20px;
}

/* Form Styles */
.consultation-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.btn-full {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section h1 {
        font-size: 1.8em;
    }

    .hero-section h2 {
        font-size: 1.2em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .consultation-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8em;
    }
}