/* Hand-drawn style CSS for Yellow Press */

@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Caveat:wght@400;600;700&display=swap');

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

body {
    font-family: 'Kalam', cursive;
    line-height: 1.6;
    color: #333;
    background: #fefefe;
    overflow-x: hidden;
}

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

/* Hand-drawn borders and animations */
.hand-drawn {
    position: relative;
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    transform: rotate(-1deg);
    z-index: -1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFD700;
    border-top: 3px solid #FF6B35;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: 2px solid #FF6B35;
    background: white;
    color: #FF6B35;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Kalam', cursive;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.cookie-buttons button:hover {
    background: #FF6B35;
    color: white;
    transform: rotate(1deg) scale(1.05);
}

.btn-accept-all {
    background: #FF6B35 !important;
    color: white !important;
}

/* Header */
.header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 15px 0;
    border-bottom: 4px solid #FF6B35;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #FF6B35 0px,
        #FF6B35 10px,
        #FFD700 10px,
        #FFD700 20px
    );
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h1 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: #333;
    margin: 0;
    transform: rotate(-2deg);
}

.domain {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #FF6B35;
    border-color: #FF6B35;
    transform: rotate(2deg) scale(1.05);
    background: rgba(255, 107, 53, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8DC, #FFFACD);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FFD700" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23smallGrid)" /></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    transform: rotate(-1deg);
}

.hero-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: #FF6B35;
    color: white;
    border: 3px solid #FF6B35;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Kalam', cursive;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(2deg);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: white;
    color: #FF6B35;
    transform: rotate(-2deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: #FAFAFA;
}

section h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    transform: rotate(-1deg);
    position: relative;
    display: inline-block;
    width: 100%;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    width: 100px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.read-more-btn {
    display: inline-block;
    background: #87CEEB;
    color: #333;
    padding: 12px 25px;
    border: 2px solid #4682B4;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    transform: rotate(1deg);
}

.read-more-btn:hover {
    background: #4682B4;
    color: white;
    transform: rotate(-1deg) scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border: 3px solid #FFD700;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card:nth-child(2) {
    transform: rotate(1deg);
}

.service-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.service-card:hover {
    transform: rotate(0deg) scale(1.05);
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.service-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #333;
    margin: 20px 0 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-card:nth-child(2) {
    transform: rotate(0.5deg);
}

.blog-card:nth-child(3) {
    transform: rotate(-1deg);
}

.blog-card:nth-child(4) {
    transform: rotate(0.8deg);
}

.blog-card:hover {
    transform: rotate(0deg) scale(1.03);
    border-color: #FF6B35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #FF6B35;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border: 3px solid #87CEEB;
    border-radius: 20px;
    text-align: center;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card:nth-child(2) {
    transform: rotate(-1deg);
}

.testimonial-card:nth-child(3) {
    transform: rotate(0.5deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) scale(1.05);
    border-color: #4682B4;
}

.testimonial-card blockquote {
    font-style: italic;
    margin: 20px 0;
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-card cite {
    color: #888;
    font-weight: 600;
}

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, #FFE4B5, #FFEAA7);
    text-align: center;
}

.subscription h2 {
    color: #333;
}

.subscription p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border: 3px solid #FF6B35;
    border-radius: 25px;
    transform: rotate(-1deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #DDD;
    border-radius: 15px;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.subscribe-btn {
    background: #FF6B35;
    color: white;
    border: 2px solid #FF6B35;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: 'Kalam', cursive;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(2deg);
    width: 100%;
}

.subscribe-btn:hover {
    background: white;
    color: #FF6B35;
    transform: rotate(-2deg) scale(1.05);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.contact-item:nth-child(2) {
    transform: rotate(0.5deg);
}

.contact-item:nth-child(3) {
    transform: rotate(-1deg);
}

.contact-item:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: #FF6B35;
}

.contact-item h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.social-media {
    text-align: center;
    background: white;
    padding: 30px;
    border: 3px solid #FFD700;
    border-radius: 20px;
    transform: rotate(1deg);
}

.social-media h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.domain-footer {
    color: #FFD700;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 20px;
    border: 3px solid #FF6B35;
    transform: rotate(-1deg);
}

.cookie-modal-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option p {
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-save, .btn-cancel {
    padding: 12px 25px;
    border: 2px solid #FF6B35;
    border-radius: 20px;
    font-family: 'Kalam', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save {
    background: #FF6B35;
    color: white;
}

.btn-save:hover {
    background: white;
    color: #FF6B35;
    transform: scale(1.05);
}

.btn-cancel {
    background: white;
    color: #FF6B35;
}

.btn-cancel:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.05);
}

/* Article Page Styles */
.article-page {
    background: white;
}

.article-header {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    padding: 40px 0;
    border-bottom: 3px solid #4682B4;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #4682B4;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-weight: 600;
}

.article-image {
    margin: 40px 0;
    text-align: center;
    background: #FAFAFA;
    padding: 20px;
}

.article-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.article-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-main .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 30px;
    padding: 20px;
    background: #F8F8F8;
    border-left: 4px solid #FF6B35;
}

.article-main h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: #333;
    margin: 40px 0 20px;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
}

.article-main h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #555;
    margin: 30px 0 15px;
}

.article-main h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #666;
    margin: 25px 0 10px;
}

.article-main ul, .article-main ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-main li {
    margin-bottom: 8px;
}

.article-sidebar {
    background: #FAFAFA;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.article-sidebar h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 12px;
}

.related-articles a {
    color: #4682B4;
    text-decoration: none;
    font-weight: 600;
}

.related-articles a:hover {
    color: #FF6B35;
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-buttons a {
    padding: 8px 16px;
    background: #87CEEB;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    background: #4682B4;
    transform: scale(1.05);
}

.newsletter-signup {
    margin-top: 30px;
    text-align: center;
}

.subscribe-link {
    display: inline-block;
    background: #FF6B35;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.subscribe-link:hover {
    background: #FFD700;
    color: #333;
    transform: scale(1.05);
}

/* Legal Page Styles */
.legal-page {
    padding: 40px 0;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #FFD700;
}

.legal-header h1 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.legal-content h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: #FF6B35;
    margin: 40px 0 20px;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
}

.legal-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #4682B4;
    margin: 30px 0 15px;
}

.legal-content h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #666;
    margin: 25px 0 10px;
}

.legal-content ul, .legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-info {
    background: #F8F8F8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    margin: 20px 0;
}

.cookie-details {
    background: #F0F8FF;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4682B4;
    margin: 20px 0;
}

.cookie-details h4 {
    color: #4682B4;
    margin-bottom: 10px;
}

/* Thanks Page Styles */
.thanks-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    min-height: 80vh;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
}

.thanks-content .lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.confirmation-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #FFD700;
    transform: rotate(-1deg);
}

.confirmation-details h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.next-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #F8F8F8;
    border-radius: 15px;
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #FF6B35;
    transform: translateX(5px);
}

.step-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.subscription-benefits {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    transform: rotate(1deg);
}

.subscription-benefits h2 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.primary {
    background: #FF6B35;
    color: white;
    border: 2px solid #FF6B35;
}

.btn.primary:hover {
    background: white;
    color: #FF6B35;
    transform: scale(1.05);
}

.btn.secondary {
    background: white;
    color: #4682B4;
    border: 2px solid #4682B4;
}

.btn.secondary:hover {
    background: #4682B4;
    color: white;
    transform: scale(1.05);
}

.social-follow {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    transform: rotate(-0.5deg);
}

.social-follow h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.social-follow .social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #f0f2f5;
    color: #1877f2;
}

.social-link.twitter {
    background: #e1f5fe;
    color: #1da1f2;
}

.social-link.instagram {
    background: #fce4ec;
    color: #e4405f;
}

.social-link.linkedin {
    background: #e3f2fd;
    color: #0077b5;
}

.social-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-support {
    background: #F8F8F8;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
}

.contact-support h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-support a {
    color: #4682B4;
    text-decoration: none;
}

.contact-support a:hover {
    color: #FF6B35;
    text-decoration: underline;
}

/* About Page Specific Styles */
.about-story {
    padding: 80px 0;
    background: #FAFAFA;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.story-block {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid #E0E0E0;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.story-block:nth-child(2) {
    transform: rotate(0.5deg);
}

.story-block:nth-child(3) {
    transform: rotate(-1deg);
}

.story-block:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: #FF6B35;
}

.story-block h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #FFD700;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-member:nth-child(2) {
    transform: rotate(1deg);
}

.team-member:nth-child(3) {
    transform: rotate(-0.5deg);
}

.team-member:nth-child(4) {
    transform: rotate(0.8deg);
}

.team-member:hover {
    transform: rotate(0deg) scale(1.05);
    border-color: #FF6B35;
}

.team-member h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #333;
    margin: 20px 0 5px;
}

.role {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 15px;
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #87CEEB;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-card:nth-child(2) {
    transform: rotate(-1deg);
}

.value-card:nth-child(3) {
    transform: rotate(0.5deg);
}

.value-card:hover {
    transform: rotate(0deg) scale(1.05);
    border-color: #4682B4;
}

.value-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #333;
    margin: 20px 0 15px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE4B5, #FFEAA7);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: white;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.cta-button.secondary:hover {
    background: #FF6B35;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        gap: 10px;
    }
    
    section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .subscription-form {
        padding: 25px;
        margin: 0 15px;
    }
    
    .cookie-modal-content {
        margin: 10px;
        padding: 25px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}