/* content.css */
body {
    margin: 0;
    padding: 0;
    background: #000000;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgb(0, 0, 0);
    background-image: linear-gradient(rgb(0, 0, 0), #404040);
    min-height: 100vh;
    position: relative;
    padding: 0 15px;
    box-sizing: border-box;
}

.content-wrapper {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Spacing classes */
.space-5 { height: 5px; }
.space-10 { height: 10px; }
.space-20 { height: 20px; }
.space-30 { height: 30px; }
.space-40 { height: 40px; }
.space-50 { height: 50px; }

/* Image wrapper */
.image-wrapper {
    text-align: center;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Description wrapper */
.description-wrapper {
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    color: rgb(255, 255, 255);
    font-family: 'Verdana', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    box-sizing: border-box;
}

.description-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: rgb(255, 255, 255);
}

.description-paragraph {
    margin-bottom: 15px;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.description-list {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.description-list-item {
    margin-bottom: 8px;
}

.description-paragraph a {
    color: #1E90FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.description-paragraph a:hover {
    color: #DC143C;
}

.profile-width {
    max-width: 100%;
}

.services-width {
    max-width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 0 10px;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .image-wrapper {
        padding: 5px;
    }

    .description-wrapper {
        padding: 15px;
        font-size: 13px;
    }

    .description-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 0 5px;
    }

    .image-wrapper {
        padding: 3px;
    }

    .description-wrapper {
        padding: 10px;
        font-size: 12px;
    }

    .description-title {
        font-size: 20px;
    }

    .description-list {
        padding-left: 15px;
    }
}

/* Contact page specific styles */
.contact-info {
    font-family: 'Verdana-Bold', 'Verdana', sans-serif;
    text-align: center;
    color: white;
    padding: 0 15px;
}

.contact-info .title {
    margin: 0;
    padding: 0;
    font-size: x-large;
    font-weight: normal;
    color: white;
}

.contact-info .email {
    color: #1E90FF;
    padding-top: 10px;
    text-decoration: none;
    opacity: 1;
}

.contact-info .email:hover {
    color: #DC143C;
    text-decoration: none;
}

/* Logo container styles */
.logo-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container .csr-logo {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    transform-origin: center center;
    z-index: 100;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    will-change: transform, opacity;
}