/* General Reset */
:root {
    --primary-color: #2362C1; /* Blue */
    --secondary-color: #002A4E; /* Dark Blue */
    --accent-color: #C28120; /* Golden */
    --highlight-color: #3AAFA9; /* Teal */
    --call-to-action-color: #FF6B35; /* Orange */
    --neutral-light: #8C8C8F; /* Light Grey */
    --neutral-dark: #3A3A3A; /* Dark Text */
  }/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background: #f8f9fa;
    color: #222;
	font-size: 1.2rem;
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
    text-align: center;
}

/* Header */
header {
    background: #111;
    color: white;
    padding: 60px 0;
}
.main-title {
    font-size: 4.5rem;
    font-weight: 600;
}
.subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ddd;
}
.intro-text {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #ccc;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #222, #444);
    color: white;
    padding: 60px 20px;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 15px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
.cta-button:hover {
    background: #FF6B35;
}

/* Services */
.services {
    background: #f4f4f4;
    padding: 60px 20px;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.service-item {
    flex: 1;
    min-width: 300px;
    max-width: 320px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

/* Portfolio */
.portfolio {
    background: #e9ecef;
    padding: 60px 20px;
}
.portfolio-examples {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #333;
}

/* Contact */
.contact {
    background: #222;
    color: white;
    padding: 60px 20px;
}
.contact a {
    color: #e68900;
    text-decoration: none;
    font-weight: bold;
}
.contact a:hover {
    color: #FF6B35;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 20px;
}


