html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

body {
    background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
    color: #333;
}

/* Enhanced Header */
header {
    background: linear-gradient(135deg, #ffdddd 0%, #ffc0cb 100%);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.logo-section {
    flex-shrink: 0;
}

.logo {
    max-width: 120px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    clip-path: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    background: white;
    box-sizing: border-box;
}

.logo:hover {
    transform: scale(1.05);
}

.header-content {
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.3rem;
    color: #34495e;
    margin: 10px 0 0 0;
    font-style: italic;
    font-weight: 300;
}

/* Enhanced Navigation */
nav {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

nav a:hover:before {
    left: 0;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Main Content */
main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.contact-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.hero-content {
    padding: 50px 40px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.hero-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.contact-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.contact-section h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Contact Card Styles */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(231, 76, 60, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(231, 76, 60, 0.3);
}

.contact-card h4 {
    font-size: 1.4rem;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.contact-card h5 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.contact-text {
    color: #555;
    font-weight: 500;
}

/* Quick Contact Form */
.quick-contact-form {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(231, 76, 60, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quick-contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.quick-contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(231, 76, 60, 0.3);
}

.quick-contact-form h4 {
    font-size: 1.6rem;
    color: #e74c3c;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 15px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Profile Container */
.contact-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.profile-container {
    position: relative;
    background: white;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 320px;
    width: 100%;
}

.profile-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.profile-picture {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 25px 25px 0 0;
}

.profile-overlay {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    position: relative;
}

.profile-overlay:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: white;
    border-radius: 2px;
    opacity: 0.8;
}

.profile-overlay h5 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.profile-overlay p {
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Contact CTA Section */
.contact-cta {
    margin: 50px 0 40px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 3px solid white;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    margin-top: 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 15px;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 100px;
    }
    
    nav {
        position: static;
    }
    
    nav a {
        display: inline-block;
        padding: 12px 20px;
        font-size: 1rem;
        margin: 0 5px;
    }
    
    main {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .contact-section {
        margin: 20px 0;
        padding: 25px 20px;
    }
    
    .contact-section h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .contact-card h5 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        margin-bottom: 12px;
        text-align: center;
    }
    
    .contact-label {
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.95rem;
        word-break: break-word;
    }
    
    .office-info {
        margin-top: 20px;
    }
    
    .contact-cta {
        margin: 30px 0;
        padding: 30px 20px;
    }
    
    .contact-cta h3 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .contact-cta p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 80px;
    }
    
    nav a {
        display: block;
        padding: 10px 15px;
        font-size: 0.9rem;
        margin: 2px 0;
        border-radius: 5px;
    }
    
    main {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .contact-section {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .contact-section h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .contact-container {
        gap: 20px;
        margin-top: 15px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .contact-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .contact-card h5 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-item {
        margin-bottom: 10px;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .contact-link {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .office-info .contact-card {
        padding: 18px 12px;
    }
    
    .contact-cta {
        padding: 25px 15px;
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .contact-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .contact-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        border-radius: 25px;
        width: auto;
        min-width: 200px;
    }
    
    footer {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}