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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

/* Sections */
.section {
    padding: 2rem 0;
}

.bg-white {
    background-color: white;
}

.bg-gray {
    background-color: #f9fafb;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2072&auto=format&fit=crop') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text {
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 0.5rem;
}

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

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button.primary {
    background-color: #4CAF50;
    color: white;
}

.button.primary:hover {
    background-color: #45a049;
}

.button.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(4px);
}

.button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Info Box */
.info-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-box p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Process List */
.process-list {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.process-number {
    width: 4rem;
    height: 4rem;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.check {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(to bottom right, #0066cc, #0052a3);
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box h2 {
    color: white;
}

.contact-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-button {
    background-color: white;
    color: #0066cc;
}

.contact-button:hover {
    background-color: #f3f4f6;
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.floating-button {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.floating-button:hover {
    background-color: #45a049;
}

.floating-button .icon {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
    color: white;
}

.floating-popup {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

.floating-contact:hover .floating-popup {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.popup-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popup-item:hover {
    color: #0066cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .process-item {
        flex-direction: column;
        text-align: center;
    }

    .process-number {
        margin: 0 auto;
    }

    .hide-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}