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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 40px 20px;
    line-height: 1.7;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Tab Navigation */
.tabs {
    display: flex;
    background: #9ca3af;
    border-bottom: 2px solid #6b7280;
}

.tab {
    flex: 1;
    padding: 20px 32px;
    background: #9ca3af;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #4b5563;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.tab:hover {
    color: #1f2937;
    background: #6b7280;
}

.tab.active {
    color: #3b82f6;
    background: white;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
}

/* Header */
.header {
    text-align: center;
    padding: 10px 10px 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .subtitle {
    font-size: 22px;
    opacity: 0.95;
    font-weight: 400;
}

/* Content Layout */
.content {
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.content.single-column {
    grid-template-columns: 1fr;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

/* Section Styles */
.section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2d3748;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section p {
    line-height: 1.8;
    color: #4b5563;
    font-size: 17px;
    font-weight: 400;
}

/* Image Container */
.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 0 40px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.hero-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0 60px;
    margin-bottom: 20px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d3748;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto 30px;
}

.about-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #3b82f6;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    grid-column: 1 / -1;
    padding-top: 20px;
    margin-top: 0;
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2d3748;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e8eaed;
    transition: all 0.3s ease;
}

.contact-card:nth-child(2) {
    text-align: right;
}

.contact-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.contact-card p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-card a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.contact-card i {
    margin-right: 8px;
    color: #3b82f6;
}

.contact-card .fa-whatsapp {
    color: #25D366;
}

.contact-simple {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-simple p {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-simple a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-simple a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Consumer Page Layout */
.consumer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.consumer-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.consumer-section.reverse {
    direction: rtl;
}

.consumer-section.reverse > * {
    direction: ltr;
}

/* Responsive Design */
@media (max-width: 968px) {
    body {
        padding: 20px 10px;
    }

    .content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }

    .consumer-section {
        grid-template-columns: 1fr;
    }

    .consumer-section.reverse {
        direction: ltr;
    }

    .header h1 {
        font-size: 40px;
    }

    .header .subtitle {
        font-size: 18px;
    }

    .section h2 {
        font-size: 28px;
    }

    .section p {
        font-size: 16px;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        padding: 14px 24px;
        font-size: 15px;
    }

    .image-container {
        position: static;
    }

    .hero-section h2 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-tagline {
        font-size: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 20px 30px;
    }

    .header h1 {
        font-size: 32px;
    }

    .header .subtitle {
        font-size: 16px;
    }

    .content {
        padding: 30px 20px;
    }

    .section h2 {
        font-size: 24px;
    }

    .text-content {
        gap: 35px;
    }

    .consumer-layout {
        gap: 40px;
    }

    .hero-section {
        padding: 20px 0 30px;
    }

    .hero-section h2 {
        font-size: 24px;
    }

    .hero-section p {
        font-size: 15px;
    }

    .about-section {
        padding: 30px 0;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .about-intro {
        font-size: 15px;
    }

    .about-tagline {
        font-size: 18px;
    }

    .contact-section {
        padding-top: 30px;
        margin-top: 30px;
    }

    .contact-section h2 {
        font-size: 22px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-simple p {
        font-size: 16px;
    }
}
