/* glamour-porn-styles.css */

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fafafa;
}

h1 {
    font-size: 2.4em;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

h2 {
    font-size: 1.8em;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #e74c3c;
    padding-left: 15px;
}

h3 {
    font-size: 1.4em;
    color: #555;
    margin-top: 30px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

.hero-image {
    width: 100%;
    height: 400px;
    background: #ddd;
    margin: 30px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: #e8e8e8;
    margin: 30px auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

blockquote {
    background: #f9f9f9;
    border-left: 5px solid #e74c3c;
    margin: 30px 0;
    padding: 20px 30px;
    font-style: italic;
    font-size: 1.1em;
    color: #555;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:hover {
    background: #f5f5f5;
}

ul, ol {
    margin: 20px 0;
    padding-left: 40px;
}

li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.offer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
}

.offer-section h2 {
    color: white;
    border-left: 4px solid white;
    margin-top: 0;
}

.offer-card {
    background: white;
    color: #333;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card h3 {
    color: #667eea;
    margin-top: 15px;
    font-size: 1.6em;
}

.offer-image {
    width: calc(100% + 50px);
    height: 250px;
    background: #f0f0f0;
    border-radius: 6px 6px 0 0;
    margin: -25px -25px 20px -25px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    font-size: 1.8em;
    color: #e74c3c;
    font-weight: bold;
    margin: 15px 0;
}

.price-period {
    font-size: 0.6em;
    color: #888;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    margin-top: 15px;
}

.cta-button:hover {
    background: #c0392b;
}

.rating {
    color: #f39c12;
    font-size: 1.2em;
    margin: 10px 0;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.pros, .cons {
    padding: 15px;
    border-radius: 6px;
}

.pros {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.cons {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
}

.pros h4, .cons h4 {
    margin-top: 0;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pros h4 {
    color: #155724;
}

.cons h4 {
    color: #721c24;
}

.pros ul, .cons ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.pros li, .cons li {
    margin-bottom: 6px;
    font-size: 0.95em;
}

.expert-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-style: italic;
}

.expert-note strong {
    color: #856404;
}

.faq-section {
    background: white;
    padding: 40px;
    margin: 50px 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-section h2 {
    border-left: none;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    font-size: 1.2em;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    padding: 18px 50px 18px 25px;
    background: #f8f9fa;
    transition: background 0.3s, color 0.3s;
    user-select: none;
    position: relative;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question::before {
    content: '▼';
    position: absolute;
    right: 25px;
    transition: transform 0.3s;
    font-size: 0.8em;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-question::before {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    color: #555;
    line-height: 1.7;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 20px 25px 25px 25px;
}

.faq-item.active .faq-question {
    background: #667eea;
    color: white;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.intro-highlight {
    background: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ffc107;
    margin: 30px 0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9em;
    }
    
    .faq-question {
        font-size: 1.1em;
        padding-right: 40px;
    }
}