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

:root {
    --primary-color: #1e40af;
    --secondary-color: #0f766e;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f97316;
    --error: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    flex: 1;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2px;
}

.logo .tagline {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e08a0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #1728a0;
    transform: translateY(-2px);
}

/* Main Content */
main {
    padding: 60px 20px;
}

/* Sections */
.section {
    margin-bottom: 80px;
    padding: 40px 0;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.section ul {
    list-style-position: inside;
    color: var(--text-light);
    margin: 15px 0;
}

.section ul li {
    margin-bottom: 12px;
    line-height: 1.8;
    padding-left: 10px;
}

.section.highlight {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.section.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 60px 40px;
}

.section.cta h2 {
    color: white;
    margin-bottom: 15px;
}

.section.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Cards Layout */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block;
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Solutions */
.solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.solution-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.solution-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

/* Roles List */
.roles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
    list-style: none;
}

.roles-list li {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    list-style: none;
    padding-left: 15px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 15px 15px 15px 40px;
    margin-bottom: 15px;
    position: relative;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-light);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Grid */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Company Info */
.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

/* Service Details */
.service-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-align: center;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-detail:last-child {
    border-bottom: none;
    grid-template-columns: 1fr;
}

.service-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-description {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 25px;
}

.service-content {
    margin-top: 20px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.role-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.role-card:hover {
    background: white;
    border-left-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.role-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.role-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 2px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}

/* FAQ */
.faq {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item h4:hover {
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section ul li {
    margin-bottom: 10px;
    padding: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 10px 0;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #e08a0b;
    text-decoration: underline;
}

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links a {
        padding-bottom: 10px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section h2 {
        font-size: 28px;
    }

    .cards,
    .solutions,
    .features,
    .values,
    .contact-options,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .roles-list,
    .roles-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 30px 20px;
    }

    .section {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 14px;
    }

    .section h2 {
        font-size: 22px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }

    body {
        line-height: 1.4;
    }

    .section {
        page-break-inside: avoid;
        margin-bottom: 30px;
    }
}
