* {
    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: #ffffff;
}

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

.primary-navigation {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu li a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #c41e3a;
}

.hero-section {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%), url('images/logo.jpg') center/cover;
    color: #ffffff;
    padding: 120px 30px;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #c41e3a;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-overview {
    padding: 80px 0;
    background-color: #fafafa;
}

.services-overview h2 {
    text-align: center;
    font-size: 42px;
    color: #c41e3a;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.stats-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 42px;
    color: #c41e3a;
    margin-bottom: 50px;
}

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

.chart-description {
    text-align: center;
    margin-top: 25px;
    color: #666;
    font-size: 16px;
}

.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
}

.quote-box {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-author {
    font-size: 20px;
    font-weight: 600;
}

.lead-form-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    text-align: center;
    font-size: 36px;
    color: #c41e3a;
    margin-bottom: 15px;
}

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

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

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.recent-posts {
    padding: 80px 0;
    background-color: #ffffff;
}

.recent-posts h2 {
    text-align: center;
    font-size: 42px;
    color: #c41e3a;
    margin-bottom: 60px;
}

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

.post-preview {
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.post-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

.post-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.post-preview h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
}

.post-preview h3 a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-preview h3 a:hover {
    color: #c41e3a;
}

.post-preview p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

.secondary-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #c41e3a;
    border: 2px solid #c41e3a;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: #c41e3a;
    color: #ffffff;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #c41e3a;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c41e3a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #8b0000;
}

.cookie-decline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-decline:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

.cookie-link {
    color: #c41e3a;
    text-decoration: underline;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    font-size: 32px;
    color: #c41e3a;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.modal-close {
    padding: 12px 40px;
    background-color: #c41e3a;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #8b0000;
}

.page-header {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
}

.about-story,
.team-section,
.values-section {
    padding: 80px 0;
}

.about-story {
    background-color: #ffffff;
}

.story-content h2 {
    font-size: 38px;
    color: #c41e3a;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.team-section {
    background-color: #fafafa;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: #c41e3a;
    margin-bottom: 60px;
}

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

.team-member {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    padding: 20px 25px 10px;
    font-size: 24px;
    color: #2c2c2c;
}

.member-role {
    padding: 0 25px;
    color: #c41e3a;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

.values-section {
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #c41e3a;
    margin-bottom: 60px;
}

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

.value-card {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .services-grid,
    .posts-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}