/* STUDSYS Marketing Material - Print-Ready Styles */

:root {
    --primary-color: #803932;
    --secondary-color: #ecbc47;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-text: #333333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

/* Header Section */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a2820 100%);
    color: var(--white);
    padding: 40px;
    text-align: center;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--secondary-color);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.header .tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
}

.header .location {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Introduction */
.intro {
    padding: 30px 40px;
    background: var(--white);
    border-bottom: 3px solid var(--secondary-color);
}

.intro p {
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Core Feature Banner */
.core-feature {
    background: var(--secondary-color);
    padding: 25px 40px;
    text-align: center;
}

.core-feature h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.core-feature ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.core-feature li {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.core-feature .empower {
    margin-top: 15px;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

/* Packages Section */
.packages {
    padding: 40px;
    background: var(--light-gray);
}

.packages h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.package-header {
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.package-header.basic {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.package-header.standard {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a2820 100%);
}

.package-header.premium {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c9a03d 100%);
    color: var(--primary-color);
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.package-header .price {
    font-size: 1.8rem;
    font-weight: 700;
}

.package-header .period {
    font-size: 0.85rem;
    opacity: 0.9;
}

.package-body {
    padding: 20px;
}

.package-body h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.package-body ul {
    list-style: none;
    margin-bottom: 15px;
}

.package-body ul li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.package-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.package-body .excludes {
    color: #999;
}

.package-body .excludes li::before {
    content: '✗';
    color: #dc3545;
}

/* Why Choose Section */
.why-choose {
    padding: 40px;
    background: var(--white);
}

.why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--secondary-color);
}

.benefit-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--dark-text);
}

/* Implementation Model */
.implementation {
    padding: 30px 40px;
    background: var(--light-gray);
}

.implementation h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.implementation-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.step .number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.step p {
    font-size: 0.9rem;
    color: #555;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a2820 100%);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.contact h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: #2a1815;
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* Print Styles */
@media print {
    body {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .package-card:hover {
        transform: none;
    }
    
    @page {
        size: A4;
        margin: 10mm;
    }
}

/* Responsive */
@media screen and (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .implementation-steps {
        flex-direction: column;
        align-items: center;
    }
}