/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(135deg, #1a5f5f, #2d7a7a);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-tagline {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: border-bottom 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    border-bottom: 2px solid #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 20px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #3CB371;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.hero-subtitle {
    font-size: 24px;
    color: #666666;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-dates {
    font-size: 20px;
    color: #333333;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-btn {
    padding: 15px 40px;
    background-color: #1E90FF;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #0066CC;
}

.hero-link {
    display: inline-block;
    color: #2d7a7a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-link:hover {
    color: #1a5f5f;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #2d7a7a;
    text-align: center;
    margin-bottom: 50px;
    font-family: Arial, sans-serif;
}

.section-title-white {
    color: #ffffff;
}

/* Market Insights Section */
.market-insights-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.insight-item {
    text-align: center;
}

.insight-value {
    font-size: 48px;
    font-weight: bold;
    color: #2d7a7a;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.insight-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Event Numbers Section */
.event-numbers-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-item {
    text-align: center;
}

.number-circle {
    width: 150px;
    height: 150px;
    border: 3px solid #2d7a7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #2d7a7a;
    margin: 0 auto 15px;
    font-family: Arial, sans-serif;
}

.number-label {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advisors Section */
.advisors-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.advisor-card {
    text-align: center;
}

.advisor-photo {
    width: 180px;
    height: 180px;
    border: 3px solid #2d7a7a;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.advisor-photo-1 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.advisor-photo-2 {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.advisor-name {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.advisor-title {
    font-size: 14px;
    color: #666666;
}

/* Speakers Section */
.speakers-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.speaker-card {
    text-align: center;
}

.speaker-photo {
    width: 180px;
    height: 180px;
    border: 3px solid #2d7a7a;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.speaker-photo-1 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.speaker-photo-2 {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.speaker-name {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.speaker-title {
    font-size: 14px;
    color: #666666;
}

/* Agenda Section */
.agenda-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #2d7a7a 0%, #1a5f5f 50%, #4a90e2 100%);
}

.agenda-content {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-day {
    margin-bottom: 50px;
}

.day-header {
    background-color: #1a3a5f;
    color: #ffffff;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px 8px 0 0;
    font-family: Arial, sans-serif;
}

.agenda-sessions {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 0 0 8px 8px;
}

.session-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.session-item:last-child {
    border-bottom: none;
}

.session-time {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    min-width: 80px;
    font-family: Arial, sans-serif;
}

.session-details {
    flex: 1;
}

.session-title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
}

.session-subtitle {
    font-size: 14px;
    color: #666666;
}

/* Attend Section */
.attend-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.attend-circles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.attend-circle {
    border: 3px solid #2d7a7a;
    border-radius: 50%;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attend-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

.attend-list {
    list-style: none;
    text-align: left;
}

.attend-list li {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.attend-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2d7a7a;
    font-weight: bold;
}

/* Opportunities Section */
.opportunities-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.opportunities-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-title {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-family: Arial, sans-serif;
}

.why-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.why-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-fact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.fact-icon {
    color: #2d7a7a;
    font-size: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Involved Section */
.involved-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.involved-item {
    text-align: center;
}

.involved-item-title {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.involved-item-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

/* Sponsors Section */
.sponsors-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.sponsor-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-circle {
    width: 300px;
    height: 300px;
    border: 3px solid #333333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sponsor-text {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.sponsor-badge {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Section */
.media-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.media-logo {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.media-logo:hover {
    border-color: #2d7a7a;
}

/* Register Section */
.register-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.register-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2d7a7a;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #1E90FF;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.submit-btn:hover {
    background-color: #0066CC;
}

.form-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-link-group {
    text-align: center;
}

.footer-link-title {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.footer-social,
.footer-help {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link,
.help-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover,
.help-link:hover {
    color: #2d7a7a;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d7a7a, #1a5f5f, #4a90e2);
    padding: 40px 0;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-cloud {
    font-size: 32px;
    color: #87CEEB;
}

.footer-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3CB371;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.footer-right {
    text-align: right;
}

.footer-copyright {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-wordpress {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .attend-circle {
        min-height: 300px;
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .insight-value,
    .number-circle {
        font-size: 36px;
    }
    
    .number-circle {
        width: 120px;
        height: 120px;
    }
    
    .advisor-photo,
    .speaker-photo {
        width: 150px;
        height: 150px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
