/* 
 * Uwriton - Style Sheet
 * Main CSS for Uwriton consulting company website
 */

/* =================== RESET & BASE STYLES =================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px base size for easier rem calculation */
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    color: #1a5b8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0f3a5f;
    text-decoration: underline;
}

ul, ol {
    list-style-position: inside;
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a5b8f;
}

h1 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

p {
    margin-bottom: 1.6rem;
}



.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
}

/* =================== LAYOUT =================== */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.page-header {
    background-color: #1a5b8f;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.page-header h1, .page-header p {
    color: #fff;
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background-color: #1a5b8f;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #0f3a5f;
    color: #fff;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: #1a5b8f;
    color: #fff;
    text-decoration: none;
}

.btn-tertiary {
    background-color: transparent;
    color: #666;
    text-decoration: underline;
    padding: 1rem;
}

.btn-tertiary:hover {
    color: #1a5b8f;
    text-decoration: underline;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

/* =================== HEADER & NAVIGATION =================== */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: block;
    width: 15rem;
}

.logo img {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.6rem;
    color: #333;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #1a5b8f;
    text-decoration: none;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a5b8f;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* =================== HERO SECTION =================== */
.hero {
    background: linear-gradient(135deg, #1a5b8f 0%, #2c82c9 100%);
    color: #fff;
    padding: 10rem 0;
    text-align: center;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
}

.hero h1, .hero p {
    color: #fff;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* =================== ABOUT SECTION =================== */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.stats {
    flex: 1;
    min-width: 30rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 15rem;
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: #1a5b8f;
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 1.6rem;
    color: #666;
}

/* =================== SERVICES SECTION =================== */
.services {
    background-color: #f7f7f7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
}

.read-more {
    display: inline-block;
    font-weight: 700;
    color: #1a5b8f;
    position: relative;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: -20px;
    transition: right 0.3s ease;
}

.read-more:hover::after {
    right: -25px;
}

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

/* =================== SERVICES DETAILED =================== */
.services-detailed .service-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #e0e0e0;
}

.services-detailed .service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.services-detailed .service-image, 
.services-detailed .service-details {
    flex: 1;
    min-width: 30rem;
}

.services-detailed .service-image img {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.services-detailed .service-details h2 {
    margin-bottom: 2rem;
}

.services-detailed .service-details h3 {
    margin: 2.5rem 0 1rem;
}

.services-detailed .service-details ul {
    margin-bottom: 2.5rem;
}

.services-detailed .service-details li {
    margin-bottom: 1rem;
}

/* Even items have image on the right */
.services-detailed .service-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* =================== TESTIMONIALS =================== */
.testimonials {
    background-color: #1a5b8f;
    color: #fff;
}

.testimonials .section-header h2, 
.testimonials .section-header p {
    color: #fff;
}

.testimonials-carousel {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 8px;
    margin: 0 1rem;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.prev-testimonial, 
.next-testimonial {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: 0 1rem;
    transition: opacity 0.3s ease;
}

.prev-testimonial:hover, 
.next-testimonial:hover {
    opacity: 0.8;
}

/* =================== BLOG PREVIEW =================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    height: 20rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #666;
    margin-bottom: 2rem;
}

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

/* =================== BLOG LIST =================== */
.blog-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.blog-filter {
    flex: 0 0 25rem;
}

.blog-list {
    flex: 1;
    min-width: 30rem;
}

.filter-options {
    list-style: none;
}

.filter-options li {
    margin-bottom: 1rem;
}

.filter-options a {
    display: block;
    padding: 1rem;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-options a:hover, 
.filter-options a.active {
    background-color: #1a5b8f;
    color: #fff;
    text-decoration: none;
}

.blog-item {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.blog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-item .blog-image {
    flex: 0 0 30rem;
    height: 20rem;
}

.blog-item .blog-details {
    flex: 1;
    min-width: 30rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.4rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pagination a, 
.pagination span {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s ease;
}

.pagination a:hover, 
.pagination a.active {
    background-color: #1a5b8f;
    color: #fff;
    text-decoration: none;
}

/* =================== BLOG POST =================== */
.blog-post {
    padding: 6rem 0;
}

.post-header {
    margin-bottom: 3rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.4rem;
}

.post-author {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #666;
}

.post-featured-image {
    margin-bottom: 3rem;
    height: 40rem;
    overflow: hidden;
    border-radius: 8px;
}

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

.post-content {
    margin-bottom: 4rem;
}

.post-content h2 {
    margin-top: 4rem;
}

.post-content h3 {
    margin-top: 3rem;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 2rem;
}

.post-content li {
    margin-bottom: 1rem;
}

.post-cta {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 3rem;
    margin: 4rem 0;
}

.post-cta h3 {
    margin-top: 0;
}

.post-tags {
    margin-bottom: 4rem;
}

.post-tags h3 {
    margin-bottom: 1rem;
}

.post-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    color: #666;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: #1a5b8f;
    color: #fff;
    text-decoration: none;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.post-nav-links {
    display: flex;
    gap: 2rem;
}

.post-nav-prev, 
.post-nav-next {
    color: #666;
    transition: color 0.3s ease;
}

.post-nav-prev:hover, 
.post-nav-next:hover {
    color: #1a5b8f;
}

.related-posts {
    background-color: #f7f7f7;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    gap: 3rem;
}

/* =================== CONTACT PREVIEW =================== */
.contact-preview {
    background: linear-gradient(135deg, #1a5b8f 0%, #2c82c9 100%);
    color: #fff;
    text-align: center;
}

.contact-preview-content {
    max-width: 70rem;
    margin: 0 auto;
}

.contact-preview h2, 
.contact-preview p {
    color: #fff;
}

.contact-preview p {
    margin-bottom: 3rem;
}

/* =================== CONTACT PAGE =================== */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    margin-bottom: 6rem;
}

.contact-info, 
.contact-form-container {
    flex: 1;
    min-width: 30rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    flex: 0 0 4rem;
    height: 4rem;
    margin-right: 1.5rem;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.contact-hours {
    margin-bottom: 3rem;
}

.contact-hours ul {
    list-style: none;
}

.contact-hours li {
    margin-bottom: 0.5rem;
}

.contact-hours span {
    font-weight: 700;
    margin-right: 1rem;
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #1a5b8f;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0f3a5f;
}

.social-links img {
    width: 2rem;
    height: 2rem;
}

.contact-image {
    margin-top: 3rem;
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.6rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 15rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
}

.checkbox-container input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.error-message {
    color: #d9534f;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.form-actions {
    margin-top: 3rem;
}

.map-section {
    background-color: #f7f7f7;
}

.map-container {
    margin: 3rem 0;
    height: 45rem;
    border-radius: 8px;
    overflow: hidden;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.direction-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* =================== THANKS PAGE =================== */
.thanks-section {
    padding: 10rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 70rem;
    margin: 0 auto;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-icon svg {
    width: 8rem;
    height: 8rem;
    color: #28a745;
}

.thanks-message {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #f7f7f7;
    padding: 3rem;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.what-next {
    background-color: #f7f7f7;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.next-step {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -2rem;
    left: 2rem;
    width: 4rem;
    height: 4rem;
    background-color: #1a5b8f;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* =================== WHY CHOOSE US =================== */
.why-choose-us {
    background-color: #f7f7f7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.feature-item {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    margin-bottom: 1.5rem;
}

.feature-item p {
    color: #666;
    margin-bottom: 0;
}

/* =================== PRICING =================== */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.pricing-item {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-item h3 {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a5b8f;
    margin-bottom: 1.5rem;
}

.pricing-note {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
}

.pricing-note p {
    margin-bottom: 2rem;
    color: #666;
}

/* =================== NEWSLETTER =================== */
.newsletter {
    background-color: #f7f7f7;
    text-align: center;
}

.newsletter-content {
    max-width: 70rem;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.newsletter-form input {
    flex: 1;
    min-width: 25rem;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.6rem;
}

.newsletter-disclaimer {
    font-size: 1.4rem;
    color: #666;
}

/* =================== FOOTER =================== */
.main-footer {
    background-color: #1a5b8f;
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1;
    min-width: 25rem;
}

.footer-logo img {
    width: 15rem;
    margin-bottom: 1.5rem;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-nav-column {
    flex: 1;
    min-width: 15rem;
}

.footer-nav-column h4 {
    color: #fff;
    margin-bottom: 2rem;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column li {
    margin-bottom: 1rem;
}

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-nav-column a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-contact {
    flex: 1;
    min-width: 25rem;
}

.footer-contact h4 {
    color: #fff;
    margin-bottom: 2rem;
}

.footer-contact ul {
    list-style: none;
    margin-bottom: 2rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-contact img {
    width: 2rem;
    height: 2rem;
}

.footer-contact a,.footer-contact span {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
    margin-left: 1rem;
}

.footer-contact a:hover {
    color: #fff;
}

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

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
}

/* =================== COOKIE CONSENT =================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
    display: none;
}

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

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 2rem;
}

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

.cookie-settings-panel {
    max-width: 120rem;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    display: none;
}

.cookie-settings-panel.active {
    display: block;
}

.cookie-options {
    margin: 2rem 0;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    font-weight: 700;
    margin-left: 0.5rem;
}

.cookie-option p {
    margin-left: 2.5rem;
    margin-bottom: 0;
    color: #666;
    font-size: 1.4rem;
}

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

/* =================== LEGAL PAGES =================== */
.legal-content {
    padding: 6rem 0;
}

.legal-date {
    text-align: right;
    color: #666;
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    margin-bottom: 2rem;
}

.legal-section h3 {
    margin: 2.5rem 0 1.5rem;
}

.legal-section ul, 
.legal-section ol {
    margin-bottom: 2rem;
}

.legal-section li {
    margin-bottom: 1rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th, 
.cookies-table td {
    padding: 1.2rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f7f7f7;
    font-weight: 700;
}

.cookies-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* =================== RESPONSIVE STYLES =================== */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .services-detailed .service-item {
        flex-direction: column !important;
    }
    
    .services-detailed .service-image, 
    .services-detailed .service-details {
        width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 10rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .nav-links .btn {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .blog-content {
        flex-direction: column;
    }
    
    .blog-filter {
        width: 100%;
    }
    
    .blog-item .blog-image, 
    .blog-item .blog-details {
        width: 100%;
    }
    
    .post-navigation {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form-container, 
    .contact-info {
        width: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .hero p {
        font-size: 1.8rem;
    }
    
    .services-grid, 
    .blog-grid, 
    .related-posts-grid, 
    .features-grid, 
    .pricing-table, 
    .faq-grid, 
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input, 
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-nav {
        flex-direction: column;
    }
    
    .footer-nav-column {
        width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}