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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.main-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    border-radius: 50%;
    border: 3px solid #e74c3c;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.primary-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.primary-nav a:hover,
.primary-nav a.nav-active {
    color: #e74c3c;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a.nav-active::after {
    width: 100%;
}

.hero-section {
    position: relative;
    height: 650px;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-section {
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 33, 62, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.fact-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 1.8rem 0;
    margin: 3rem 0;
}

.fact-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.fact-icon {
    font-size: 2rem;
}

.fact-text {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
}

.container-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e74c3c;
    border-radius: 2px;
}

.features-grid {
    padding: 5rem 0;
    background-color: #ffffff;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-card h3 {
    font-size: 1.6rem;
    padding: 1.5rem 1.5rem 0.8rem;
    color: #16213e;
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

.secondary-parallax {
    background-image: url('images/2.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
    margin: 4rem 0;
}

.secondary-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 33, 62, 0.8);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.parallax-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.parallax-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

.services-preview {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.service-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #16213e;
}

.service-item p {
    color: #555;
    line-height: 1.7;
}

.cta-center {
    text-align: center;
}

.cta-button-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #16213e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #1a1a2e;
    transform: translateY(-2px);
}

.recent-posts {
    padding: 5rem 0;
    background-color: #ffffff;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.blog-preview-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-6px);
}

.blog-preview-card img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-preview-card h3 {
    font-size: 1.4rem;
    padding: 1.3rem 1.3rem 0.7rem;
    color: #16213e;
}

.blog-preview-card p {
    padding: 0 1.3rem 1rem;
    color: #555;
}

.read-more-link {
    display: inline-block;
    padding: 0 1.3rem 1.3rem;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #c0392b;
}

.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ecf0f1;
    padding: 3.5rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #e74c3c;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a,
.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-column a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 2rem;
    border-top: 4px solid #e74c3c;
}

.cookie-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #16213e;
}

.cookie-text-section p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.cookie-text-section a {
    color: #e74c3c;
    text-decoration: underline;
}

.cookie-buttons-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.cookie-necessary {
    background-color: #16213e;
    color: #ffffff;
}

.cookie-necessary:hover {
    background-color: #1a1a2e;
}

.cookie-decline {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-decline:hover {
    background-color: #7f8c8d;
}

.cookie-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-close-btn:hover {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cookie-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons-section {
        justify-content: center;
    }
}
