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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.header {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.agent-selection {
    margin-bottom: 30px;
}

.agent-selection h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.agent-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.agent-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.agent-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.agent-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.agent-card:hover .agent-name {
    color: #667eea;
}

.agent-description {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.features {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.features h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;
}

.feature-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

.feature-item strong {
    color: #667eea;
    font-weight: 600;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 12px;
}

.footer a {
    color: #667eea;
    text-decoration: none;
}

.footer a:hover {
    color: #764ba2;
}

/* CSS for default_page_view.html - Enhanced for full screen */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 20px; /* Increased base font size */
}

.default-page-container {
    width: 98%; /* Increased from 95% */
    max-width: 1800px; /* Increased from 1440px */
    min-height: 95vh; /* Increased from 80vh */
    margin: 10px auto; /* Reduced margin for more screen usage */
    padding: 40px; /* Increased padding */
    background-color: #fff;
    border-radius: 15px; /* Larger border radius */
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); /* Enhanced shadow */
    display: flex;
    flex-direction: column;
}

.default-page-container .page-header-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px; /* Increased spacing */
    padding-bottom: 30px; /* Increased padding */
    border-bottom: 2px solid #e0e0e0; /* Thicker border */
    width: 100%;
}

.default-page-container .page-logo {
    max-width: 200px; /* Increased from 156px */
    height: auto;
    margin-right: 25px; /* Increased spacing */
    margin-bottom: 0;
}

.default-page-container .page-header-section h1 {
    font-size: clamp(32px, 5.5vw, 40px); /* Larger font sizes */
    color: #0056b3;
    margin: 0;
    text-align: left;
    font-weight: 600;
}

.default-page-container .intro-section,
.default-page-container .additional-info-section {
    padding: 25px 40px; /* Increased padding */
    width: 100%;
    max-width: 1400px; /* Increased width */
    margin: 0 auto;
    box-sizing: border-box;
}

.default-page-container .intro-section p,
.default-page-container .additional-info-section p {
    font-size: clamp(18px, 2.8vw, 22px); /* Larger font sizes */
    color: #444;
    line-height: 1.7;
    margin-bottom: 35px; /* Increased spacing */
}

.image-display-section {
    width: 100%;
    padding: 20px 0 50px; /* Increased padding */
}

.image-display-section h2 {
    font-size: clamp(28px, 4.5vw, 36px); /* Larger font sizes */
    color: #333;
    margin-bottom: 50px; /* Increased spacing */
    font-weight: 600;
    text-align: center;
}

.image-circles-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed to flex-start for better alignment */
    flex-wrap: wrap;
    gap: 60px; /* Increased gap */
    padding: 30px 20px; /* Increased padding */
    width: 100%;
    max-width: 1600px; /* Added max-width */
    margin: 0 auto; /* Center the container */
}

.image-circle-wrapper {
    text-align: center;
    margin: 0;
    width: min(550px, 45%); /* Increased width */
    display: flex;
    flex-direction: column;
    border-radius: 15px; /* Larger border radius */
    padding: 25px; /* Increased padding */
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #fafafa; /* Light background */
}

.image-circle-wrapper:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px); /* Add lift effect */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-circle {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 280px; /* Increased from 216px */
    margin: 0 auto;
    border-radius: 50%;
    background-color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #eee; /* Thicker border */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Enhanced shadow */
    margin-bottom: 20px; /* Increased spacing */
}

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

.caption {
    font-size: clamp(20px, 2.5vw, 24px); /* Larger font sizes */
    color: #333;
    margin-top: 10px; /* Increased spacing */
    margin-bottom: 20px; /* Added bottom margin */
    font-weight: 700; /* Bolder font */
}

.agent-info {
    margin-top: 25px; /* Increased spacing */
    padding: 25px; /* Increased padding */
    background-color: #f8f9fa;
    border-radius: 12px; /* Larger border radius */
    border-left: 6px solid #0056b3; /* Thicker border */
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Added shadow */
}

.agent-info h3 {
    font-size: clamp(22px, 3vw, 26px); /* Larger font sizes */
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px; /* Increased spacing */
    font-weight: 600;
}

.agent-info p {
    font-size: clamp(16px, 2.2vw, 18px); /* Larger font sizes */
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px; /* Increased spacing */
}

.agent-info ul {
    margin: 0;
    padding-left: 30px; /* Increased padding */
}

.agent-info li {
    font-size: clamp(15px, 2vw, 17px); /* Larger font sizes */
    color: #666;
    margin-bottom: 8px; /* Increased spacing */
    line-height: 1.5; /* Better line height */
}

.page-footer-section {
    text-align: center;
    padding: 25px; /* Increased padding */
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-size: clamp(16px, 2vw, 18px); /* Larger font sizes */
    margin-top: auto;
    width: 100%;
    border-radius: 0 0 15px 15px; /* Larger border radius */
    border-top: 2px solid #f0f0f0; /* Added top border */
}

/* Enhanced responsive adjustments */
@media (max-width: 1200px) {
    .image-circles-container {
        gap: 40px;
    }
    
    .image-circle-wrapper {
        width: min(500px, 48%);
    }
}

@media (max-width: 768px) {
    .default-page-container {
        width: 98%;
        padding: 25px;
        margin: 5px auto;
    }
    
    .default-page-container .page-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .default-page-container .page-logo {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 150px;
    }
    
    .default-page-container .page-header-section h1 {
        text-align: center;
    }
    
    .image-circles-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .image-circle-wrapper {
        width: 95%;
        max-width: 500px;
    }
    
    .image-circle {
        max-width: 220px;
    }
    
    .agent-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .default-page-container {
        width: 100%;
        padding: 20px;
        margin: 0;
        border-radius: 0;
    }
    
    .image-circle {
        max-width: 180px;
    }
    
    .default-page-container .page-logo {
        max-width: 120px;
    }
    
    .agent-info {
        padding: 15px;
    }
}

/* Large screen optimizations */
@media (min-width: 1600px) {
    .default-page-container {
        max-width: 2000px;
        padding: 50px;
    }
    
    .image-circles-container {
        gap: 80px;
        max-width: 1800px;
    }
    
    .image-circle-wrapper {
        width: min(600px, 45%);
    }
    
    .image-circle {
        max-width: 320px;
    }
}

/* Additional responsive design adjustments */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .container {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .logo {
        width: 100px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .agent-options {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .agent-card {
        width: 100%;
        max-width: 250px;
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }
    
    .agent-image {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .agent-info {
        flex: 1;
    }
    
    .agent-name {
        font-size: 15px;
    }
    
    .agent-description {
        font-size: 11px;
        text-align: left;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .feature-item {
        padding: 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .logo {
        width: 80px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .subtitle {
        font-size: 13px;
    }
    
    .agent-card {
        padding: 12px;
    }
    
    .agent-image {
        width: 45px;
        height: 45px;
    }
    
    .agent-name {
        font-size: 14px;
    }
    
    .agent-description {
        font-size: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 600px;
    }
    
    .agent-options {
        gap: 15px;
    }
}

@media (orientation: landscape) and (max-width: 768px) {
    .agent-options {
        flex-direction: row;
        justify-content: center;
    }
    
    .agent-card {
        flex-direction: column;
        text-align: center;
        max-width: 160px;
    }
    
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}