/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #c2dcf2 0%, #eae2a3 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 1rem 0;
    background: linear-gradient(135deg, #c2dcf2 0%, #eae2a3 100%);
    margin-bottom: 1rem;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.logo-image {
    max-width: 180px;
    height: auto;
    max-height: 120px;
}

.logo-section h1 {
    color: #000000;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

/* Business Card Styles */
.business-card {
    max-width: 600px;
    margin: 2rem auto;
    background: #c2dcf2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border: 3px solid #aaa581;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: #c2dcf2;
    z-index: 1;
}

.business-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: #eae2a3;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
}

.specialization {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Times New Roman', serif;
}

.name {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.company {
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #eae2a3;
    border-top: 2px solid #c2dcf2;
}

.email, .phone {
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
}

/* SEO Content Styles */
.seo-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #c2dcf2 0%, #eae2a3 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #aaa581;
}

.seo-content h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(45deg, #c2dcf2, #eae2a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.seo-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 3px solid #eae2a3;
    border-top: 1px solid #c2dcf2;
    padding: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.seo-content p {
    margin-bottom: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #c2dcf2;
    border-right: 4px solid #eae2a3;
}

.seo-content ul {
    margin: 0 auto 1rem auto;
    display: inline-block;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid #c2dcf2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.seo-content li {
    margin-bottom: 0.5rem;
    padding: 5px 0;
    border-bottom: 1px solid #eae2a3;
}

.seo-content li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 150px;
        max-height: 100px;
    }
    
    .logo-section h1 {
        font-size: 1rem;
    }
    
    .logo-section {
        padding: 0.5rem 0;
    }
    
    .business-card {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .card-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .specialization {
        font-size: 1rem;
    }
    
    .name {
        font-size: 1.3rem;
    }
    
    .company {
        font-size: 1.1rem;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .seo-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .seo-content h1 {
        font-size: 1.5rem;
    }
    
    .seo-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .card-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .seo-content {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .business-card {
        box-shadow: none;
        border: 2px solid #333;
    }
    
    .seo-content {
        background: white;
        box-shadow: none;
    }
}
