body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #00010d;
    color: #ffffff;
    line-height: 1.6;
    font-size: 18px;
}
a {
    color: #FFCC00;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}
.nav-menu a,
.cta-button {
    color: inherit;
}
.nav-menu a:hover,
.cta-button:hover {
    text-decoration: none;
}
.header {
    background-color: #00010d;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 60px;
}
.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-menu li {
    margin-left: 20px;
}
.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-family: 'Teko', sans-serif;
    transition: color 0.3s;
}
.nav-menu a:hover {
    color: #ffcc00;
}
.nav-menu .active {
    color: #ffcc00;
}
.hero-banner {
    width: 100%;
    height: 300px;
    background: url('../images/Roberts Computer Company (RCC Computers) rcccomputers.net - Homepage Banner.jpg') no-repeat center center;
    background-size: cover;
}
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.main-title {
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Teko', sans-serif;
}
.section-title {
    font-size: 36px;
    color: #ffcc00;
    margin-top: 48px;
    margin-bottom: 24px;
    font-family: 'Teko', sans-serif;
}
.section-subtitle {
    font-size: 30px;
    color: #ffcc00;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'Teko', sans-serif;
}
.section-subsubtitle {
    font-size: 24px;
    color: #ffcc00;
    margin-top: 24px;
    margin-bottom: 12px;
    font-family: 'Teko', sans-serif;
}
.section-image {
    max-width: 300px;
    height: auto;
    margin: 20px 50px;
    border: 3px solid white;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.right-align {
    float: right;
    margin-left: 50px;
}
.left-align {
    float: left;
    margin-right: 50px;
}
p {
    margin-bottom: 16px;
}
ul, ol {
    margin-bottom: 16px;
    padding-left: 30px;
}
.ai-concepts-list, .applications-list, .tools-list, .learning-steps {
    list-style-type: disc;
}
.main-content::after {
    content: "";
    display: table;
    clear: both;
}
section {
    margin-bottom: 48px;
    overflow: hidden;
}
.blog-image {
    max-width: 600px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 1rem;
}
.blog-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.blog-card p {
    font-size: 0.9rem;
    color: #666;
}
.footer {
    background-color: #000000;
    color: white;
    padding: 40px 20px 0;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.footer-column h3 {
    color: #FFCC00;
    margin-bottom: 15px;
    font-family: 'Teko', sans-serif;
    font-size: 24px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFCC00;
}

.footer-logo {
    width: 95%;
    height: auto;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFCC00;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 10px;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .section-image {
        max-width: 500px;
    }
    
    .intro-section .section-image {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #00010d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .main-title {
        font-size: 40px;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .section-subsubtitle {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .section-image {
        float: none;
        margin: 20px auto;
        display: block;
    }
    
    .main-title,
    .section-title,
    .section-subtitle,
    .section-subsubtitle {
        text-align: center;
    }
}
.cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #00010D;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 18px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    color: #092A4D;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .cta-button {
        display: block;
        text-align: center;
        margin: 20px auto;
    }
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 3 / 2;  /* This will make them horizontal rectangles */
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #00010D;
}

.author {
    font-weight: 500;
    margin: 0;
    text-align: right;
    color: #00010D;
}
.testimonial-content h3 {
    color: #00010D;
    font-size: 28px;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Teko', sans-serif;
}
.date {
    font-size: 0.9em;
    color: #00010D;
}
.rating {
    color: #FFCC00;
    font-size: 1.2em;
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}