/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    min-height: 100vh;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* Language selector */
.language-selector {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-selector option {
    background: #93c5fd;
    color: white;
}

/* Main content */
main {
    margin-top: 80px;
    padding: 2rem;
}

/* Hero section */
.hero {
    text-align: center;
    color: white;
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Services section */
.services {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.service-card {
    background: linear-gradient(135deg, #fdba74 0%, #fb923c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: white;
    opacity: 0.8;
}

/* CTA Button */
.cta-button {
    margin-top: 2rem;
}

.cta-button a {
    display: inline-block;
    background: linear-gradient(135deg, #fdba74 0%, #fb923c 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Full width service card */
.service-card.full-width {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
}

/* Approach section */
.approach {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 4rem 3rem;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #ea580c 100%);
}

.approach h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
}

.approach h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    border-radius: 2px;
}

.approach-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #555;
    font-weight: 300;
    line-height: 1.6;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.step {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
}

.step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(147, 197, 253, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(147, 197, 253, 0.5);
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.step p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Connection lines between steps */
.approach-steps .step:nth-child(odd) .step-number {
    background: linear-gradient(135deg, #fdba74 0%, #fb923c 100%);
    box-shadow: 0 8px 20px rgba(253, 186, 116, 0.4);
}

.approach-steps .step:nth-child(odd):hover .step-number {
    box-shadow: 0 12px 25px rgba(253, 186, 116, 0.5);
}

/* Step decorative elements */
.step::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover::before {
    opacity: 1;
}

/* Add subtle animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.step-number::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    background-clip: padding-box;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step-number::after {
    opacity: 1;
    animation: float 2s ease-in-out infinite;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .approach {
        padding: 3rem 2rem;
        margin: 2rem 1rem;
    }
    
    .approach h2 {
        font-size: 2.2rem;
    }
    
    .approach-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-steps .step::after {
        display: none;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}


.why-us {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fdba74 0%, #fb923c 100%);
    color: white;
    border-radius: 10px;
    position: relative;
    padding-left: 3rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Newsletter section */
.newsletter {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #93c5fd;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* About CTA section on homepage */
.about-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* About page styles */
.about-page {
    margin-top: 80px;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    min-height: calc(100vh - 80px);
}

.about-hero {
    text-align: center;
    color: white;
    padding: 4rem 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.about-page section {
    margin-bottom: 4rem;
}

.about-mission,
.about-vision,
.about-expertise,
.about-value,
.about-location,
.about-commitments {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.about-page h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
}

.about-page h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.about-page p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.about-page ul {
    list-style: none;
    margin: 1.5rem 0;
}

.about-page li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.about-page li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #93c5fd;
    font-weight: bold;
    font-size: 1.2rem;
}

.value-grid,
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-grid li,
.commitments-grid li {
    background: linear-gradient(135deg, #ff7b3b 0%, #ff9f43 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
}

.value-grid li::before,
.commitments-grid li::before {
    display: none;
}

.about-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #ff7b3b 0%, #ff9f43 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.primary:hover,
.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Navigation updates */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.8;
    text-decoration: underline;
}

.logo a {
    color: white;
    text-decoration: none;
}

/* Legal page styles */
.legal-page {
    margin-top: 80px;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    min-height: calc(100vh - 80px);
}

.legal-hero {
    text-align: center;
    color: white;
    padding: 4rem 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.legal-section a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.company-info,
.hosting-info,
.gdpr-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid #ff7b3b;
}

.legal-contact {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.legal-contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    border: none;
    padding: 0;
}

.legal-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.legal-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive design for Legal page */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-contact,
    .legal-cta {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .company-info,
    .hosting-info,
    .gdpr-info {
        padding: 1.5rem;
    }
}

/* Responsive design for About page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-page section {
        margin-bottom: 2rem;
    }
    
    .about-mission,
    .about-vision,
    .about-expertise,
    .about-value,
    .about-location,
    .about-commitments {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .about-page h2 {
        font-size: 2rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

/* Footer updates */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .services {
        margin: 2rem 1rem;
        padding: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}