.text-center {
text-align:center;
}

.regimg {
width:100%;
}

.mtop0{margin-top: 0px;}
.mtop5{margin-top: 5px;}
.mtop10{margin-top: 10px;}
.mtop15{margin-top: 15px;}
.mtop20{margin-top: 20px;}
.mtop30{margin-top: 30px;}
.mtop40{margin-top: 40px;}
.mtop50{margin-top: 50px;}
.mtop60{margin-top: 60px;}
.mtop70{margin-top: 70px;}
.mtop80{margin-top: 80px;}
.mtop90{margin-top: 90px;}
.mtop100{margin-top: 100px;}

.mbot0{margin-bottom: 0px;}
.mbot5{margin-bottom: 5px;}
.mbot10{margin-bottom: 10px;}
.mbot20{margin-bottom: 20px;}
.mbot30{margin-bottom: 30px;}
.mbot40{margin-bottom: 40px;}
.mbot50{margin-bottom: 50px;}
.mbot60{margin-bottom: 60px;}
.mbot70{margin-bottom: 70px;}
.mbot80{margin-bottom: 80px;}
.mbot90{margin-bottom: 90px;}
.mbot100{margin-bottom: 100px;}

.events-grid a {
text-decoration:none;
border:0px;
}

/* Main Content Area Styles - Scoped to avoid conflicts */
.main-content-area {
    background: var(--white);
    padding: 60px 0;
    min-height: 60vh;
}

.main-content-area .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.main-content-area .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* Main Content Column Styles */
.main-content-area .content-column {
    padding-right: 30px;
}

.main-content-area .content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.main-content-area .content-highlight {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.main-content-area .content-highlight h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-content-area .content-highlight p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Content Button - Matches site style */
.main-content-area .content-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 4px rgba(61, 139, 73, 0.2);
}

.main-content-area .content-btn:hover {
    background: #2f6b3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 139, 73, 0.3);
    color: var(--white);
    text-decoration: none;
}

.main-content-area .content-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.main-content-area .content-btn:hover i {
    transform: translateX(2px);
}

/* Sidebar Styles */
.main-content-area .sidebar-column {
    padding-left: 30px;
}

.main-content-area .sidebar-widget {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.main-content-area .sidebar-widget h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

/* Quick Links Navigation */
.main-content-area .quick-links-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-content-area .quick-links-nav li {
    margin-bottom: 12px;
}

.main-content-area .quick-links-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: var(--white);
    border: 1px solid #e9ecef;
}

.main-content-area .quick-links-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(40, 104, 173, 0.2);
}

.main-content-area .quick-links-nav a i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    transition: color 0.3s ease;
}

.main-content-area .quick-links-nav a:hover i {
    color: var(--white);
}

/* Contact Info Widget */
.main-content-area .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.main-content-area .contact-info-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.main-content-area .contact-info-item span {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.main-content-area .contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.main-content-area .contact-info-item a:hover {
    text-decoration: underline;
}

/* Stats Widget */
.main-content-area .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.main-content-area .stat-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.main-content-area .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.main-content-area .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content-area .content-column,
    .main-content-area .sidebar-column {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .main-content-area .sidebar-widget {
        margin-bottom: 25px;
    }
    
    .main-content-area .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .main-content-area .content-column,
    .main-content-area .sidebar-column {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .main-content-area .content-paragraph {
        text-align: left;
    }
    
    .main-content-area .content-btn {
        width: 100%;
        justify-content: center;
    }
    
    .main-content-area .sidebar-widget {
        margin-left: -5px;
        margin-right: -5px;
    }

    .page-title {
        font-size: 1.8rem;
    }

}

/* Full Width Page Layout Styles */
.full-width-content-area {
    background: var(--white);
    padding: 60px 0;
    min-height: 60vh;
}

.full-width-content-area .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.full-width-content-area .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Full Width Content Styles */
.full-width-content-area .content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.full-width-content-area .content-highlight {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    border-left: 6px solid var(--secondary-color);
    max-width: 1000px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.full-width-content-area .content-highlight h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.full-width-content-area .content-highlight p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Full Width Button Container */
.full-width-content-area .button-container {
    text-align: center;
    margin: 40px 0;
}

.full-width-content-area .content-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px 15px 10px;
    box-shadow: 0 4px 8px rgba(61, 139, 73, 0.2);
}

.full-width-content-area .content-btn:hover {
    background: #2f6b3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(61, 139, 73, 0.3);
    color: var(--white);
    text-decoration: none;
}

.full-width-content-area .content-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.full-width-content-area .content-btn:hover i {
    transform: translateX(3px);
}

/* Secondary Button Style for Full Width */
.full-width-content-area .content-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.full-width-content-area .content-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Feature Grid for Full Width */
.full-width-content-area .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.full-width-content-area .feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-width-content-area .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.full-width-content-area .feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.full-width-content-area .feature-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.full-width-content-area .feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Two Column Section within Full Width */
.full-width-content-area .two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    align-items: center;
}

.full-width-content-area .column-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.full-width-content-area .column-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.full-width-content-area .column-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.full-width-content-area .column-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.full-width-content-area .column-image:hover img {
    transform: scale(1.05);
}

/* Stats Section for Full Width */
.full-width-content-area .stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px;
    margin: 60px 0;
    text-align: center;
}

.full-width-content-area .stats-section h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.full-width-content-area .stats-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.full-width-content-area .stat-item-full {
    text-align: center;
}

.full-width-content-area .stat-number-full {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.full-width-content-area .stat-label-full {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Full Width Responsive Design */
@media (max-width: 768px) {
    .full-width-content-area .content-paragraph,
    .full-width-content-area .content-highlight {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .full-width-content-area .content-highlight {
        padding: 25px;
    }
    
    .full-width-content-area .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .full-width-content-area .two-column-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .full-width-content-area .stats-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .full-width-content-area .content-paragraph {
        text-align: left;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .full-width-content-area .content-highlight {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }
    
    .full-width-content-area .content-btn {
        width: calc(100% - 30px);
        margin: 0 15px 15px 15px;
        justify-content: center;
    }
    
    .full-width-content-area .feature-grid,
    .full-width-content-area .two-column-section {
        padding: 0 15px;
    }
    
    .full-width-content-area .stats-grid-full {
        grid-template-columns: 1fr;
    }
    
    .full-width-content-area .stat-number-full {
        font-size: 2.5rem;
    }
}

.econtentblock img {
width:100%;
max-width:900px;
}

.econtentblock h2, h3 {
margin-bottom:20px;
font-weight:bold;
font-size: 1.8rem;
line-height: 1.4;
}

.econtentblock h4, h5, h6 {
margin-bottom:20px;
font-weight:bold;
font-size: 1.5rem;
line-height: 1.4;
}

.econtentblock p {
margin-bottom: 10px;
}

.econtentblock hr {
margin-top:20px;
}

.econtentblock ul {
margin-left:20px;
margin-bottom:10px;
}

.econtentblock .button {
border-radius: 10px;
}

#activelink {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(40, 104, 173, 0.2);
}

#activelink i {
    color: var(--white);
}

.green-button1 {
    background: #3d8b49;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(61, 139, 73, 0.2);
}

.green-button1:hover {
    background: #2f6b3a;
    color:#FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 139, 73, 0.3);
    color: var(--white);
    text-decoration: none;
}

.green-button1 a {
color:#FFFFFF;
text-decoration: none;
}

.green-button1 a:hover {
color:#FFFFFF;
text-decoration: none;
}

/* Hall of Fame Grid Styles */
.hof-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.hof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 0;
}

@media screen and (min-width: 640px) {
  .hof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .hof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hof-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 30px 20px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hof-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.hof-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hof-card a:hover {
  text-decoration: none;
}

.hof-card p {
  margin: 0;
  line-height: 1.6;
}

.hof-card b {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.hof-card em {
  font-style: normal;
  color: #666;
  font-size: 0.95rem;
}

.hof-no-results {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  color: #666;
}

/* Individual Hall of Fame Inductee Styles */
.ihof-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.ihof-header {
  margin-bottom: 20px;
}

.ihof-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
}

.ihof-header hr {
  border: 0;
  border-top: 2px solid #e0e0e0;
  margin: 0 0 25px 0;
}

.ihof-image {
  float: right;
  padding: 0 0 15px 15px;
  width: 40%;
  max-width: 400px;
}

.ihof-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ihof-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.ihof-bio p {
  margin-bottom: 1rem;
}

.ihof-year {
  font-style: italic;
  color: #666;
  font-size: 1rem;
  margin-top: 25px;
}

.ihof-no-results {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .ihof-image {
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
  }
  
  .ihof-header h2 {
    font-size: 1.6rem;
  }
}

/* Event Card Styles */
.event-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.event-card:hover,
.event-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(32, 83, 157, 0.25);
    outline: 3px solid #20539D;
    outline-offset: 3px;
}

.event-card:active {
    transform: translateY(-6px);
}

.event-click-hint {
    display: none;
    margin-top: 15px;
    padding: 8px 12px;
    background: #20539D;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.event-card:hover .event-click-hint,
.event-card:focus .event-click-hint {
    display: block;
    animation: evPulse 0.5s ease;
}

@keyframes evPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* All Events Grid - 2 columns on desktop, 1 on mobile */
.all-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .all-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .all-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Simple Modal Overlay */
.ev-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content Box */
.ev-modal-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

/* Close X Button - WCAG Compliant */
.ev-modal-close {
    color: #333;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #333;
    transition: all 0.2s ease;
}

.ev-modal-close:hover,
.ev-modal-close:focus {
    color: white;
    background: #20539D;
    border-color: #20539D;
    text-decoration: none;
    outline: 2px solid #20539D;
    outline-offset: 2px;
}

/* Modal Header with Image - Blue Theme */
.ev-modal-header {
    position: relative;
    background: linear-gradient(135deg, #20539D 0%, #163d73 100%);
    color: white;
    padding: 40px 30px 30px 30px;
    border-radius: 8px 8px 0 0;
}

.ev-modal-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block;
}

.ev-modal-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.ev-modal-date {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

/* Modal Body Content - Blue Theme */
.ev-modal-body-content {
    padding: 30px;
    line-height: 1.6;
    color: #333;
    background: white;
}

.ev-modal-body-content h1,
.ev-modal-body-content h2,
.ev-modal-body-content h3 {
    color: #20539D;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ev-modal-body-content h1 {
    font-size: 24px;
}

.ev-modal-body-content h2 {
    font-size: 22px;
}

.ev-modal-body-content h3 {
    font-size: 20px;
}

.ev-modal-body-content p {
    margin-bottom: 15px;
}

.ev-modal-body-content ul,
.ev-modal-body-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.ev-modal-body-content li {
    margin-bottom: 8px;
}

.ev-modal-body-content strong {
    color: #163d73;
}

.no-events-message {
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ev-modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .ev-modal-close {
        right: 10px;
        top: 10px;
        font-size: 35px;
        width: 35px;
        height: 35px;
    }
    
    .ev-modal-header {
        padding: 30px 20px 20px 20px;
    }
    
    .ev-modal-title {
        font-size: 22px;
    }
    
    .ev-modal-body-content {
        padding: 20px;
    }
    
    .event-card:hover {
        transform: translateY(-4px);
    }
}

        .ucf {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            max-width: 600px;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            line-height: 1.5;
            color: #333;
            background: none;
        }

        .ucf * {
            box-sizing: border-box;
        }

        .ucf .form-container {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid #e1e5e9;
        }

        .ucf .form-title {
            margin: 0 0 20px 0;
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            text-align: center;
        }

        .ucf .form-description {
            margin: 0 0 25px 0;
            font-size: 14px;
            color: #666;
            text-align: center;
        }

        .ucf .form-group {
            margin-bottom: 20px;
        }

        .ucf .form-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 14px;
        }

        .ucf .required {
            color: #e74c3c;
            margin-left: 2px;
        }

        .ucf .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e5e9;
            border-radius: 5px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            background-color: #ffffff;
            color: #333;
        }

        .ucf .form-input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .ucf .form-input:hover {
            border-color: #bdc3c7;
        }

        .ucf .form-textarea {
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
        }

        .ucf .submit-btn {
            width: 100%;
            padding: 14px 20px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            margin-top: 10px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .ucf .submit-btn:hover {
            background-color: #2980b9;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
        }

        .ucf .submit-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
        }

        .ucf .submit-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
        }

        /* Responsive design */
        @media (max-width: 600px) {
            .ucf .form-container {
                padding: 20px;
                margin: 10px;
            }

            .ucf .form-title {
                font-size: 20px;
            }
        }

        /* Remove red outlines and invalid states */
        .ucf .form-input:invalid {
            border-color: #e1e5e9; /* Keep normal border color */
            box-shadow: none;
        }

        .ucf .form-input:invalid:focus {
            border-color: #3498db; /* Normal focus color */
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        /* Success state for valid inputs */
        .ucf .form-input.valid {
            border-color: #27ae60;
        }

        /* Loading state */
        .ucf .submit-btn:disabled {
            background-color: #bdc3c7;
            cursor: not-allowed;
            transform: none;
        }

        .ucf .submit-btn:disabled:hover {
            background-color: #bdc3c7;
            transform: none;
            box-shadow: none;
        }

        /* Hide browser validation messages */
        .ucf .form-input::-webkit-validation-bubble-message,
        .ucf .form-input::-webkit-validation-bubble-top-outer-arrow,
        .ucf .form-input::-webkit-validation-bubble-top-inner-arrow {
            display: none;
        }