/* 
   Greatips.net - Main Stylesheet
   Colors from logo: 
   - Green: #7ed957
   - Black: #000000
*/

:root {
    --primary: #7ed957;
    --primary-light: #a0e67d;
    --primary-dark: #5db937;
    --dark: #000000;
    --light: #ffffff;
    --grey-light: #f8f8f8;
    --grey: #eaeaea;
    --grey-dark: #666666;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    padding: 100px 0 70px;
    text-align: center;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    animation: heroPatternAnimation 15s infinite alternate ease-in-out;
}

@keyframes heroPatternAnimation {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

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

.hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--dark);
    color: var(--light);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #333;
    color: var(--light);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background-color: var(--dark);
    color: var(--light);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: floatAnimation 3s ease-in-out infinite;
}

.trust-badge:nth-child(1) {
    animation-delay: 0s;
}

.trust-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.trust-badge:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--dark);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--grey-light);
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--grey-light) 90%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    max-width: 100%;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(126, 217, 87, 0.1);
    padding: 20px;
    border-radius: 8px;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-container {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(126, 217, 87, 0.4) 100%);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--dark);
    color: var(--light);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--grey-dark);
}

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

.service-card {
    background-color: var(--grey-light);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--grey-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-highlight {
    display: inline-block;
    background-color: rgba(126, 217, 87, 0.15);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-cta {
    margin-top: 50px;
    text-align: center;
    background-color: var(--grey-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.services-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.services-cta .btn {
    background-color: var(--primary-dark);
    color: var(--light);
    padding: 12px 30px;
    font-weight: 600;
}

.services-cta .btn:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Resources Section */
.resources {
    padding: 80px 0;
    background-color: var(--grey-light);
    position: relative;
}

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

.resource-card {
    background-color: var(--light);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    border-top: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    color: var(--primary-dark);
    background-color: rgba(126, 217, 87, 0.15);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon svg {
    width: 100%;
    height: 100%;
}

.resource-content {
    flex: 1;
}

.resource-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--dark);
}

.resource-content p {
    color: var(--grey-dark);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.resource-meta {
    margin-bottom: 15px;
}

.resource-tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-dark);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.resource-link:hover {
    border-bottom-color: var(--primary-dark);
    color: var(--primary-dark);
}

.resources-newsletter {
    margin-top: 50px;
    text-align: center;
    background-color: rgba(126, 217, 87, 0.2);
    padding: 30px;
    border-radius: 8px;
}

.resources-newsletter p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
}

.resources-newsletter .btn {
    background-color: var(--dark);
    color: var(--light);
}

.resources-newsletter .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary);
    color: var(--dark);
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 0;
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark);
    width: 80px;
}

.newsletter p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Newsletter Benefits */
.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--dark);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--dark);
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.newsletter-trust {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--dark);
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    display: flex;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group button {
    border-radius: 0 4px 4px 0;
    background-color: var(--dark);
    color: var(--light);
    font-weight: 600;
    padding: 0 25px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background-color: #333;
    transform: translateY(0);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-top: 15px;
}

.form-consent input {
    margin-top: 5px;
    transform: scale(1.2);
}

.form-consent label {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--grey);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-legal h4 {
    color: var(--light);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

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

.footer-links a,
.footer-legal a {
    color: var(--grey);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary);
}

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

.disclaimer {
    font-size: 0.9rem;
    color: var(--grey-dark);
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .image-container {
        height: 250px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .form-group button {
        border-radius: 4px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links,
    .footer-legal {
        margin-top: 20px;
    }

    .newsletter-form {
        padding: 20px 15px;
    }
    
    .form-group button {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .form-consent label {
        font-size: 0.85rem;
    }
    
    .newsletter-trust {
        padding: 6px 15px;
        font-size: 0.95rem;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .services-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-container {
        height: 300px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .service-card,
    .resource-card {
        padding: 20px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .service-icon, 
    .resource-icon,
    .benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .service-icon svg, 
    .resource-icon svg,
    .benefit-icon svg {
        width: 100%;
        height: 100%;
    }
}

/* Legal Pages (Privacy Policy, Terms, Disclaimer) */
.legal-page {
    padding: 80px 0;
    background-color: var(--light);
}

.legal-page h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--grey-dark);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--grey-dark);
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--grey-dark);
}

.legal-content a {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.legal-content a:hover {
    border-bottom-color: var(--primary-dark);
}

.legal-content strong {
    font-weight: 600;
    color: var(--dark);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content h3 {
        font-size: 1.15rem;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1000;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    margin: 6px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light);
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 900;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        margin-top: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .mobile-nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Rest of the existing mobile styles */
}

/* Body styles when nav is open */
body.nav-open {
    overflow: hidden;
}

body.nav-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 800;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure SVGs scale properly */
svg {
    max-width: 100%;
} 