/* Base Styles */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #e87511;
    --tertiary-color: #4a7fc1;
    --accent-color: #f5a742;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #6c757d;
    --text-white: #fff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --radius: 0.25rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--tertiary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header */
.main-header {
    background-color: var(--text-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

.main-nav .nav-list {
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 20px;
}

.main-nav .nav-list a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 5px;
    position: relative;
}

.main-nav .nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.main-nav .nav-list a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to right, var(--light-color), #e8f0fe);
}

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

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(to right, var(--light-color), #e8f0fe);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--tertiary-color);
    color: var(--text-white);
}

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

.btn-secondary:hover {
    background-color: #d46a0f;
    color: var(--text-white);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background-color: var(--text-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

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

/* Services Section */
.services-section {
    background-color: #f6f9fc;
}

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

.service-card {
    background-color: var(--text-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

/* Why Us Section */
.why-us-section {
    background-color: var(--text-white);
}

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

.why-us-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    background-color: #f6f9fc;
    transition: var(--transition);
}

.why-us-item:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.why-us-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.why-us-item:hover .why-us-number {
    color: var(--accent-color);
}

.why-us-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.why-us-item p {
    color: inherit;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f6f9fc;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--text-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-avatar svg {
    color: var(--primary-color);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonials-controls button {
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-controls button:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
    background-color: var(--text-white);
}

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

.blog-card {
    background-color: #f6f9fc;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 500;
}

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

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 60px 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #d46a0f;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.9rem;
}

.form-consent input[type="checkbox"] {
    margin-top: 5px;
}

/* Footer */
.main-footer {
    background-color: #1a3663;
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--text-white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.cookie-content {
    margin-bottom: 20px;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-settings {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.cookie-settings.visible {
    display: block;
}

.cookie-options {
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cookie-option p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-option.disabled .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Page Styles */
.contact-main-section {
    background-color: var(--text-white);
}

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

.contact-info-box {
    padding: 30px;
    background-color: #f6f9fc;
    border-radius: var(--radius);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--text-light);
}

.contact-text a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-social h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-map {
    margin-top: 40px;
}

.contact-map h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.map-container {
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-box {
    padding: 30px;
    background-color: var(--text-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-box h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form-box p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-required-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
.contact-faq-section {
    background-color: #f6f9fc;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--text-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Services Pages Styles */
.services-main-section {
    background-color: var(--text-white);
}

.service-features {
    margin: 15px 0;
    padding-left: 20px;
}

.service-features li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    list-style: disc;
}

.service-price {
    font-weight: 500;
    margin: 15px 0;
    color: var(--primary-color);
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    margin-bottom: 40px;
    background-color: #f6f9fc;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-item-number {
    width: 80px;
    background-color: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-item-content {
    padding: 30px;
    flex: 1;
}

.service-item-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    margin-top: 10px;
    color: var(--primary-color);
}

.link-arrow:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.link-arrow:hover:after {
    margin-left: 10px;
}

.services-special-section {
    background-color: #f6f9fc;
}

.services-packages-section {
    background-color: var(--text-white);
}

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

.package-card {
    background-color: #f6f9fc;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.package-featured {
    border: 2px solid var(--primary-color);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 5px 10px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
}

.package-header {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 20px;
    text-align: center;
}

.package-header h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
}

.package-features {
    padding: 20px;
    list-style: none;
}

.package-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.package-card .btn {
    display: block;
    margin: 0 20px 20px;
}

.services-process-section {
    background-color: #f6f9fc;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 50px);
    background-color: var(--border-color);
}

.process-step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    z-index: 1;
}

.process-step-content {
    padding-top: 10px;
}

.process-step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* About Page Styles */
.about-history,
.about-mission,
.about-values,
.about-team,
.about-certificates {
    background-color: var(--text-white);
}

.about-history:nth-child(odd),
.about-values:nth-child(odd),
.about-certificates:nth-child(odd) {
    background-color: #f6f9fc;
}

.mission-box {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
}

.mission-content h2 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.mission-content p {
    max-width: 800px;
    margin: 0 auto 15px;
    opacity: 0.9;
}

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

.value-card {
    background-color: var(--text-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.team-member {
    background-color: #f6f9fc;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-member-photo {
    width: 120px;
    height: 120px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

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

.certificate-item {
    background-color: var(--text-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.certificate-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.about-cta {
    background: linear-gradient(to right, var(--primary-color), #1a3663);
    color: var(--text-white);
}

.cta-box {
    text-align: center;
    padding: 60px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-box p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Blog Styles */
.blog-main-section {
    background-color: var(--text-white);
    padding: 80px 0;
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    display: flex;
    background-color: #f6f9fc;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-post-image {
    flex: 1;
    max-width: 300px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    flex: 2;
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.blog-post-date,
.blog-post-category {
    color: var(--text-light);
}

.blog-post-category {
    padding: 2px 8px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 4px;
    color: var(--primary-color);
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-post-content h2 a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-post-content h2 a:hover {
    color: var(--primary-color);
}

.blog-post-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: #f6f9fc;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-posts li {
    margin-bottom: 15px;
}

.popular-posts li:last-child {
    margin-bottom: 0;
}

.popular-posts a {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 5px;
    transition: var(--transition);
}

.popular-posts a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.blog-cta-section {
    background-color: #f6f9fc;
}

/* Article Page Styles */
.article-hero {
    padding: 60px 0;
    background: linear-gradient(to right, var(--light-color), #e8f0fe);
}

.article-hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.article-hero-content {
    flex: 1;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-date,
.article-category {
    color: var(--text-light);
}

.article-category {
    padding: 2px 8px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 4px;
    color: var(--primary-color);
}

.article-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
}

.article-image {
    flex: 1;
    text-align: center;
}

.article-image img {
    max-height: 400px;
    border-radius: var(--radius);
}

.article-content {
    background-color: var(--text-white);
    padding: 80px 0;
}

.article-main {
    max-width: 900px;
    margin: 0 auto;
}

.article-body {
    margin-bottom: 40px;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-body ul li {
    list-style: disc;
}

.article-body ol li {
    list-style: decimal;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-body a:hover {
    color: var(--tertiary-color);
}

.article-author {
    display: flex;
    align-items: center;
    background-color: #f6f9fc;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.article-author .author-avatar {
    flex-shrink: 0;
}

.article-author .author-info {
    flex: 1;
}

.article-share {
    margin-bottom: 40px;
    text-align: center;
}

.article-share h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons a {
    width: 40px;
    height: 40px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.article-related h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

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

.related-post {
    background-color: #f6f9fc;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 15px;
    font-size: 1.1rem;
}

.related-post .post-date {
    padding: 0 15px 15px;
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .form-row {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item-number {
        width: 100%;
        height: 50px;
    }

    .article-hero .container {
        flex-direction: column;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--text-white);
        box-shadow: var(--shadow);
        padding: 20px;
    }

    .main-nav .nav-list.show {
        display: flex;
    }

    .main-nav .nav-list li {
        margin: 10px 0;
    }

    .blog-post {
        flex-direction: column;
    }

    .blog-post-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto 15px;
    }

    .process-step {
        flex-direction: column;
    }

    .process-step-number {
        margin: 0 auto 15px;
    }

    .process-step:not(:last-child):after {
        display: none;
    }

    .process-step-content {
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: center;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

/* Animation */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}