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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

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

.logo-icon {
    font-size: 24px;
    color: #e74c3c;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.logo-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: #e74c3c;
}

.nav-link:hover {
    color: #e74c3c;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    position: relative;
    background: linear-gradient(to right, #e6dace 40%, white 40%);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 600px;
    padding: 60px 40px;
}

/* Left Background */
.left-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 550px;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* Profile Card */
.profile-card {
    position: absolute;
    left: 120px;
    top: calc(65% + 45px);
    transform: translateY(-50%);
    width: 380px;
    background: #f4ece6;
    border-radius: 0;
    padding: 50px 40px 0px;
    text-align: center;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.profile-image {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    background: transparent;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    animation: avatarZoom 0.8s ease-in-out 1.5s forwards;
}

.loading-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    animation: drawCircle 1.5s ease-out forwards;
    z-index: 10;
}

@keyframes drawCircle {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(-360deg);
        opacity: 0;
    }
}

@keyframes avatarZoom {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes avatarIntro {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    40% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.2);
}

.flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    opacity: 0;
    animation: fadeInAvatar 0.5s ease-in 1.5s forwards;
}

@keyframes fadeInAvatar {
    to {
        opacity: 1;
    }
}

.flip-card.flipping .flip-card-inner {
    animation: flipAnimation 2s ease-in-out !important;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-image.flipping {
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.3);
}

@keyframes flipAnimation {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back,
.flip-card-special {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: #f4ece6;
}

.flip-card-front img,
.flip-card-back img,
.flip-card-special img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-special {
    transform: rotateY(0deg);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.flip-card-special.active {
    opacity: 1;
    pointer-events: auto;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 38px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

    .profile-line {
        width: 30px;
        height: 2px;
        background: #e74c3c;
        margin: 0 auto 15px;
    }.profile-title {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 0;
    margin: 20px -40px -0px;
    position: relative;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.social-link:hover {
    background: #f8f9fa;
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

/* Social Media Specific Colors */
.social-link:nth-child(1):hover {
    border-color: #1877f2;
    color: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
}

.social-link:nth-child(2):hover {
    border-color: #1da1f2;
    color: #1da1f2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.2);
}

.social-link:nth-child(3):hover {
    border-color: #0077b5;
    color: #0077b5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.2);
}

.social-link:nth-child(4):hover {
    border-color: #e4405f;
    color: #e4405f;
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.2);
}

.social-link:nth-child(5):hover {
    border-color: #2EC866;
    color: #2EC866;
    box-shadow: 0 4px 12px rgba(46, 200, 102, 0.2);
}

/* Right Content */
.right-content {
    position: absolute;
    right: 250px;
    top: 150px;
    width: 450px;
    padding: 40px;
    z-index: 5;
}

.content-section {
    width: 100%;
    min-height: 500px;
}

.hello-section {
    max-width: 450px;
    position: relative;
}

.hello-title {
    font-size: 90px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
}

.hello-title.contact-title {
    font-size: 90px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
}

.hello-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.description {
    width: 100%;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

    .description {
        max-width: 400px;
    }
    
    .description p {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }

/* Typing cursor effect */
.typing-cursor::after {
    content: '|';
    color: #e74c3c;
    font-weight: 700;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Contact Info Styles */
.contact-simple {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.contact-item-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.contact-item-simple span {
    font-size: 20px;
    min-width: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-simple p {
    margin: 0;
    line-height: 24px;
}

/* Access Denied Styles */
    .access-denied {
        text-align: center;
        padding: 20px 10px;
        max-width: 100%;
        overflow: visible;
    }
    
    .access-denied h2 {
        font-size: 32px;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .access-denied p {
        font-size: 12px;
        color: #555;
        margin: 0;
        font-weight: 400;
        line-height: 1.4;
    }
    
    /* Landscape Mobile Specific */
    @media (orientation: landscape) and (max-height: 500px) and (min-width: 700px) {
        .access-denied {
            padding: 15px 5px;
        }
        
        .access-denied h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }
        
        .access-denied p {
            font-size: 10px;
        }
    }/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 50px 0;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 40px;
}

.footer-left {
    flex: 1;
}

.footer-left p {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-left a {
    color: #e74c3c;
    text-decoration: none;
}

.footer-center {
    flex: 1;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-contact {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item strong {
    display: block;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Footer Social Media Specific Colors */
.footer-social a:nth-child(1):hover {
    border-color: #1877f2;
    color: #1877f2;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.2);
}

.footer-social a:nth-child(2):hover {
    border-color: #1da1f2;
    color: #1da1f2;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.2);
}

.footer-social a:nth-child(3):hover {
    border-color: #0077b5;
    color: #0077b5;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.footer-social a:nth-child(4):hover {
    border-color: #e4405f;
    color: #e4405f;
    box-shadow: 0 2px 8px rgba(228, 64, 95, 0.2);
}

.footer-social a:nth-child(5):hover {
    border-color: #2EC866;
    color: #2EC866;
    box-shadow: 0 2px 8px rgba(46, 200, 102, 0.2);
}

/* Responsive Design */
@media (max-width: 1179px) {
    .main {
        background: white;
        min-height: auto;
    }
    
    .main-content {
        padding: 40px 20px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .left-bg {
        display: none;
    }
    
    .profile-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 40px;
        width: 320px;
        z-index: 20;
        background: #f4ece6;
        padding: 35px 30px 0px;
    }
    
    .social-links {
        margin: 20px -30px 0px;
    }
    
    .right-content {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
        min-height: 450px;
        padding: 140px 40px 40px;
        text-align: center;
        background: #e6dace;
        border-radius: 0;
        margin: -100px -20px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        box-sizing: border-box;
    }
    
    .hello-section {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
    
    .description {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .access-denied {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hello-title {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .hello-title.contact-title {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .hello-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .left-bg {
        display: none;
    }
    
    .profile-card {
        width: 300px;
        padding: 35px 30px 0px;
        background: #f4ece6;
        z-index: 20;
    }
    
    .right-content {
        background: #e6dace;
        border-radius: 0;
        margin: -120px -20px 0;
        padding: 160px 20px 30px;
        min-height: auto;
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    
    .content-section {
        min-height: auto;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .profile-name {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .hello-title {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .hello-title.contact-title {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .hello-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 200px;
        padding: 14px 30px;
    }
    
    .description {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .contact-simple {
        gap: 12px;
        max-width: 280px;
    }
    
    .contact-item-simple {
        gap: 10px;
        padding: 10px 0;
    }
    
    .contact-item-simple span {
        font-size: 18px;
        width: 20px;
    }
    
    .contact-item-simple p {
        font-size: 14px;
    }
    

    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-center,
    .footer-right {
        justify-content: center;
    }
    
    .footer-contact {
        flex-direction: row;
        gap: 25px;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item {
        min-width: 90px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 15px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .main-content {
        padding: 30px 15px;
    }
    
    .left-bg {
        display: none;
    }
    
    .profile-card {
        width: 280px;
        padding: 30px 25px 0px;
        background: #f4ece6;
        z-index: 20;
    }
    
    .right-content {
        background: #e6dace;
        border-radius: 0;
        margin: -140px -15px 0;
        padding: 170px 15px 25px;
        min-height: 350px;
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    
    .profile-image {
        width: 110px;
        height: 110px;
        margin-bottom: 15px;
    }
    
    .profile-name {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .profile-title {
        font-size: 11px;
        margin-bottom: 25px;
    }
    
    .social-links {
        padding: 15px;
        margin: 20px -25px 0px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 15px;
        background: white;
        box-sizing: border-box;
    }
    
    .hello-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .hello-title.contact-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .hello-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .btn {
        width: 180px;
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .description p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .contact-simple {
        gap: 10px;
        max-width: 250px;
    }
    
    .contact-item-simple {
        gap: 8px;
        padding: 8px 0;
    }
    
    .contact-item-simple span {
        font-size: 16px;
        width: 18px;
    }
    
    .contact-item-simple p {
        font-size: 13px;
    }
    

    
    .footer {
        padding: 35px 0;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 20px;
    }
    
    .footer-center,
    .footer-right {
        justify-content: center;
    }
    
    .footer-contact {
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item {
        min-width: 80px;
        text-align: center;
    }
    
    .contact-item strong {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .contact-item p {
        font-size: 11px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social a {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .profile-card {
        width: 220px;
        padding: 25px 15px 0px;
    }
    
    .social-links {
        margin: 20px -15px 0px;
    }
    
    .hello-title {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .hello-title.contact-title {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .hello-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn {
        width: 150px;
        font-size: 11px;
        padding: 10px 20px;
    }
    
    .description p {
        font-size: 13px;
        line-height: 1.5;
    }
    

}

/* Landscape Mobile - All Phones */
@media (orientation: landscape) and (max-height: 500px) and (min-width: 500px) {
    .main {
        background: linear-gradient(to right, #e6dace 38%, white 38%);
        min-height: calc(100vh - 120px);
    }
    
    .main-content {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        height: calc(100vh - 120px);
        padding: 20px 15px;
        display: block;
        overflow: hidden;
    }
    
    .left-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 320px;
        height: 100%;
        background: transparent;
        z-index: 1;
        display: block;
    }
    
    .profile-card {
        position: absolute;
        left: 180px;
        top: 50%;
        transform: translateY(-50%);
        width: 200px;
        background: #f4ece6;
        border-radius: 0;
        padding: 18px 15px 0px;
        text-align: center;
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 10;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 12px;
        overflow: hidden;
        background: #f0f0f0;
    }
    
    .profile-name {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .profile-title {
        font-size: 9px;
        color: #666;
        letter-spacing: 0.8px;
        font-weight: 500;
        margin-bottom: 15px;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 8px;
        background: white;
        padding: 8px 12px;
        border-radius: 0;
        margin: 12px -15px 0px;
        position: relative;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: white;
        color: #666;
        border: 2px solid #e0e0e0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 11px;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .right-content {
        position: absolute;
        left: 380px;
        top: 20px;
        width: calc(100vw - 430px);
        max-width: 400px;
        padding: 12px;
        z-index: 5;
        background: transparent;
        margin: 0;
        display: block;
        text-align: left;
        overflow: visible;
        word-wrap: break-word;
    }
    
    .content-section {
        width: 100%;
        min-height: auto;
    }
    
    .hello-section {
        max-width: 100%;
        margin: 0;
        overflow: visible;
        position: relative;
    }
    
    .hello-title {
        font-size: 28px;
        font-weight: 700;
        color: #000;
        margin-bottom: 4px;
        line-height: 0.85;
    }
    
    .hello-title.contact-title {
        font-size: 28px;
        font-weight: 700;
        color: #000;
        margin-bottom: 4px;
        line-height: 0.85;
    }
    
    .hello-subtitle {
        font-size: 12px;
        color: #666;
        margin-bottom: 12px;
        font-weight: 400;
    }
    
    .action-buttons {
        display: flex;
        gap: 8px;
        margin-bottom: 12px;
        justify-content: flex-start;
    }
    
    .btn {
        padding: 7px 16px;
        border-radius: 16px;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.3px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }
    
    .btn-primary {
        background: #e74c3c;
        color: white;
        border: none;
    }
    
    .btn-secondary {
        background: transparent;
        color: #000;
        border: 2px solid #000;
    }
    
    .description {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }
    
    .description p {
        font-size: 11px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .contact-simple {
        display: flex;
        flex-direction: column;
        gap: 6px;
        max-width: 100%;
        margin: 0;
    }
    
    .contact-item-simple {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 0;
    }
    
    .contact-item-simple span {
        font-size: 12px;
        width: 16px;
        text-align: center;
    }
    
    .contact-item-simple p {
        font-size: 11px;
        color: #333;
        margin: 0;
        font-weight: 500;
    }
}
