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

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

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

/* Header */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
}

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

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #007bff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

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

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

.hero-content .subtitle {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons .btn {
    margin-right: 15px;
}

.hero-image {
    flex: 0 0 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Sections */
section {
    padding: 80px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.about-content ul {
    list-style: none;
    margin-top: 20px;
}

.about-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-content ul li:before {
    content: '✔';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.cards-grid .card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cards-grid .card:hover {
    transform: translateY(-5px);
}

.cards-grid .card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.cards-grid .card p {
    font-size: 1rem;
    color: #666;
}

.cards-grid .card ul {
    list-style: none;
    margin-top: 15px;
}

.cards-grid .card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.cards-grid .card ul li:before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Services Section */
.services-section .card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-top: 15px;
}

.payment-info {
    margin-top: 50px;
    padding: 30px;
    background-color: #f0f8ff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.payment-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.payment-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.payment-info ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.payment-info ul li:before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
.process-steps {
    list-style: none;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 40px auto;
}

.process-steps li {
    background-color: #f0f8ff;
    margin-bottom: 20px;
    padding: 20px 20px 20px 60px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    font-size: 1.1rem;
}

.process-steps li:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Ethics, Approach, Guarantees Sections */
.ethics-section ul, .approach-section ul, .guarantees-section ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.ethics-section ul li, .approach-section ul li, .guarantees-section ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.ethics-section ul li:before, .approach-section ul li:before, .guarantees-section ul li:before {
    content: '✔';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.faq-item h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #555;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.main-footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }

    .main-nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        flex: none;
        width: 80%;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .process-steps li {
        padding: 15px 15px 15px 50px;
    }

    .process-steps li:before {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
    }
}

