/* Auxiliary Pages Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
    padding: 40px 0;
    border-bottom: 1px solid #e0f2fe;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1108701/pexels-photo-1108701.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a8a;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 200px);
    position: relative;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1108099/pexels-photo-1108099.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.page-title > .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e5a6b;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title p {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    position: relative;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.content-section.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1108117/pexels-photo-1108117.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.content-section > .container {
    position: relative;
    z-index: 1;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e5a6b;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 2px;
}

.content-block h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d7a8a;
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
    padding-left: 20px;
}

.content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 2px;
}

.content-block p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.content-block a {
    color: #2d7a8a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.content-block a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    transition: width 0.3s ease;
}

.content-block a:hover {
    color: #1e5a6b;
}

.content-block a:hover::after {
    width: 100%;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin: 30px 0;
    display: grid;
    gap: 15px;
}

.feature-list li {
    padding: 15px 20px;
    color: #4a5568;
    position: relative;
    padding-left: 50px;
    font-size: 1.05rem;
    line-height: 1.7;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 100%);
    border-radius: 12px;
    border-left: 4px solid #4fc3f7;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.2);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #4fc3f7;
    font-weight: bold;
    font-size: 1.3rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
}

/* Values Grid (About Page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e0f2fe;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e5a6b;
    margin-bottom: 20px;
    margin-top: 0;
    padding-left: 0;
}

.value-item h3::before {
    display: none;
}

.value-item p {
    color: #4a5568;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e0f2fe;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #1e5a6b;
    font-weight: 600;
    min-width: 80px;
}

.contact-info p::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Enhanced Image Integration */
.content-section:nth-child(even) {
    position: relative;
}

.content-section:nth-child(even)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: url('https://images.pexels.com/photos/1108136/pexels-photo-1108136.jpeg?auto=compress&cs=tinysrgb&w=400') center/cover;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.content-section:nth-child(odd) {
    position: relative;
}

.content-section:nth-child(odd)::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: url('https://images.pexels.com/photos/1108701/pexels-photo-1108701.jpeg?auto=compress&cs=tinysrgb&w=300') center/cover;
    border-radius: 20px;
    opacity: 0.08;
    z-index: 0;
    transform: rotate(-15deg);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e5a6b 0%, #2d7a8a 100%);
    color: white;
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1108099/pexels-photo-1108099.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.footer-logo .logo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 1px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 5px 0;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .content-section:nth-child(even)::after,
    .content-section:nth-child(odd)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 30px 0;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .page-title {
        padding: 80px 0;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
    
    .page-title p {
        font-size: 1.1rem;
        padding: 8px 16px;
    }
    
    .content-section {
        padding: 80px 0;
    }
    
    .content-block {
        padding: 40px 30px;
        margin: 0 10px;
    }
    
    .content-block h2 {
        font-size: 2rem;
    }
    
    .content-block h3 {
        font-size: 1.4rem;
    }
    
    .content-block p {
        font-size: 1rem;
        text-align: left;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-item {
        padding: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        margin-top: 80px;
        padding: 60px 0 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-column {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 25px 0;
    }
    
    .logo-container {
        gap: 10px;
        padding: 15px 20px;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .page-title {
        padding: 60px 0;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .page-title p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-block {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .content-block h3 {
        font-size: 1.3rem;
    }
    
    .content-block p,
    .feature-list li {
        font-size: 0.95rem;
    }
    
    .feature-list li {
        padding: 12px 15px 12px 40px;
    }
    
    .value-item {
        padding: 25px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .footer {
        margin-top: 60px;
        padding: 50px 0 25px;
    }
    
    .footer-column {
        padding: 20px;
    }
    
    .footer-bottom p {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Additional Modern Enhancements */
.content-block {
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #4fc3f7;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        background: white !important;
        color: black !important;
    }
    
    .content-block {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}